From ab261571792654a538d2e6c5fdd17f8367aaeb65 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Wed, 15 Oct 2025 07:39:09 +0000 Subject: [PATCH 01/15] Az function cli changes --- src/containerapp/HISTORY.rst | 8 + .../azext_containerapp/_clients.py | 263 +++++++++++++++++- src/containerapp/azext_containerapp/_help.py | 139 ++++++++- .../azext_containerapp/_params.py | 44 ++- .../azext_containerapp/_ssh_utils.py | 8 +- .../azext_containerapp/_transformers.py | 147 ++++++++++ src/containerapp/azext_containerapp/_utils.py | 44 +++ .../azext_containerapp/_validators.py | 103 ++++++- .../azext_containerapp/commands.py | 20 +- src/containerapp/azext_containerapp/custom.py | 174 +++++++++++- .../azext_containerapp/tests/latest/utils.py | 22 ++ 11 files changed, 951 insertions(+), 21 deletions(-) diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index b3c506aec64..5598edc75c7 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -7,6 +7,13 @@ upcoming 1.2.0b4 ++++++ +* 'az containerapp function list': List functions in a container app +* 'az containerapp function show': Show specific function in a container app +* 'az containerapp function keys show': Show specific function key in a container app +* 'az containerapp function keys list': List function keys in a container app +* 'az containerapp function keys set': Create a new or update an existing function key in a container app +* 'az containerapp function invocations summary': Get function invocation summary from Application Insights +* 'az containerapp function invocations traces': Get function invocation traces from Application Insights * 'az containerapp update/up': Disallow changing `--revisions-mode` to Labels. * 'az containerapp session code-interpreter': Fix `--path` in examples * 'az containerapp sessionpool create/update': Support `--lifecycle-type` and `--max-alive-period` @@ -14,6 +21,7 @@ upcoming * 'az containerapp env premium-ingress': Deprecate `--min-replicas` and `--max-replicas` parameters, use workload profile scale instead. * 'az containerapp sessionpool create/update': Support `--probe-yaml` * 'az containerapp session stop': Support stop session for custom container sessions +* 'az containerapp debug': Support `--command` to run a command inside the container and exit 1.2.0b3 ++++++ diff --git a/src/containerapp/azext_containerapp/_clients.py b/src/containerapp/azext_containerapp/_clients.py index f97b76faefe..58f84e3b903 100644 --- a/src/containerapp/azext_containerapp/_clients.py +++ b/src/containerapp/azext_containerapp/_clients.py @@ -8,7 +8,7 @@ import os import requests -from azure.cli.core.azclierror import ResourceNotFoundError +from azure.cli.core.azclierror import ResourceNotFoundError, CLIError from azure.cli.core.util import send_raw_request from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.command_modules.containerapp._clients import ( @@ -303,6 +303,267 @@ def list(cls, cmd, resource_group_name, container_app_name): return policy_list +class ContainerAppFunctionsPreviewClient(): + api_version = "2025-10-02-preview" + APP_INSIGHTS_API_VERSION = "2018-04-20" + + @classmethod + def list_functions_by_revision(cls, cmd, resource_group_name, container_app_name, revision_name): + management_hostname = cmd.cli_ctx.cloud.endpoints.resource_manager + sub_id = get_subscription_id(cmd.cli_ctx) + url_fmt = "{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.App/containerApps/{}/revisions/{}/functions?api-version={}" + request_url = url_fmt.format( + management_hostname.strip('/'), + sub_id, + resource_group_name, + container_app_name, + revision_name, + cls.api_version) + + r = send_raw_request(cmd.cli_ctx, "GET", request_url) + if not r: + raise CLIError(f"Error retrieving functions for revision '{revision_name}' of container app '{container_app_name}'.") + return r.json() + + @classmethod + def get_function_by_revision(cls, cmd, resource_group_name, container_app_name, revision_name, function_name): + management_hostname = cmd.cli_ctx.cloud.endpoints.resource_manager + sub_id = get_subscription_id(cmd.cli_ctx) + url_fmt = "{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.App/containerApps/{}/revisions/{}/functions/{}?api-version={}" + request_url = url_fmt.format( + management_hostname.strip('/'), + sub_id, + resource_group_name, + container_app_name, + revision_name, + function_name, + cls.api_version) + + r = send_raw_request(cmd.cli_ctx, "GET", request_url) + if not r: + raise CLIError(f"Error retrieving function '{function_name}' for revision '{revision_name}' of container app '{container_app_name}'.") + return r.json() + + @classmethod + def list_functions(cls, cmd, resource_group_name, container_app_name): + management_hostname = cmd.cli_ctx.cloud.endpoints.resource_manager + sub_id = get_subscription_id(cmd.cli_ctx) + url_fmt = "{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.App/containerApps/{}/functions?api-version={}" + request_url = url_fmt.format( + management_hostname.strip('/'), + sub_id, + resource_group_name, + container_app_name, + cls.api_version) + + r = send_raw_request(cmd.cli_ctx, "GET", request_url) + if not r: + raise CLIError(f"Error retrieving functions for container app '{container_app_name}'.") + return r.json() + + @classmethod + def get_function(cls, cmd, resource_group_name, container_app_name, function_name): + management_hostname = cmd.cli_ctx.cloud.endpoints.resource_manager + sub_id = get_subscription_id(cmd.cli_ctx) + url_fmt = "{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.App/containerApps/{}/functions/{}?api-version={}" + request_url = url_fmt.format( + management_hostname.strip('/'), + sub_id, + resource_group_name, + container_app_name, + function_name, + cls.api_version) + + r = send_raw_request(cmd.cli_ctx, "GET", request_url) + if not r: + raise CLIError(f"Error retrieving function '{function_name}' for container app '{container_app_name}'.") + return r.json() + + @classmethod + def get_function_invocation_summary(cls, cmd, resource_group_name, container_app_name, revision_name, function_name, timespan="30d"): + # Fetch the app insights resource app id + app_id = cls._get_app_insights_id(cmd, resource_group_name, container_app_name, revision_name) + + # Use application insights query to get function invocations summary + invocation_summary_query = ( + f"requests | extend functionNameFromCustomDimension = tostring(customDimensions['faas.name']) " + f"| where timestamp >= ago({timespan}) " + f"| where cloud_RoleName =~ '{container_app_name}' " + f"| where cloud_RoleInstance contains '{revision_name}' " + f"| where operation_Name =~ '{function_name}' or functionNameFromCustomDimension =~ '{function_name}' " + f"| summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)" + ) + + try: + result = cls._execute_app_insights_query(cmd, app_id, invocation_summary_query, "getLast30DaySummary") + return result + except Exception as ex: + raise CLIError(f"Error retrieving function invocation summary: {str(ex)}") + + @classmethod + def get_function_invocation_traces(cls, cmd, resource_group_name, container_app_name, revision_name, function_name, timespan="30d", limit=20): + # Fetch the app insights resource app id + app_id = cls._get_app_insights_id(cmd, resource_group_name, container_app_name, revision_name) + + # Use application insights query to get function invocations traces + invocation_traces_query = ( + f"requests | extend functionNameFromCustomDimension = tostring(customDimensions['faas.name']) " + f"| project timestamp, id, operation_Name, success, resultCode, duration, operation_Id, functionNameFromCustomDimension, " + f"cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions['InvocationId']), tostring(customDimensions['faas.invocation_id'])) " + f"| where timestamp > ago({timespan}) " + f"| where cloud_RoleName =~ '{container_app_name}' " + f"| where cloud_RoleInstance contains '{revision_name}' " + f"| where operation_Name =~ '{function_name}' or functionNameFromCustomDimension =~ '{function_name}' " + f"| order by timestamp desc | take {limit} " + f"| project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension " + ) + + try: + result = cls._execute_app_insights_query(cmd, app_id, invocation_traces_query, "getInvocationTraces") + return result + except Exception as ex: + raise CLIError(f"Error retrieving function invocation traces: {str(ex)}") + + @classmethod + def _get_app_insights_id(cls, cmd, resource_group_name, container_app_name, revision_name): + # Fetch the revision details using the container app client + revision = ContainerAppPreviewClient.show_revision(cmd, resource_group_name, container_app_name, revision_name) + # Extract the list of environment variables from the revision's properties + env_vars = [] + if revision and "properties" in revision and "template" in revision["properties"]: + containers = revision["properties"]["template"].get("containers", []) + for container in containers: + env_vars.extend(container.get("env", [])) + + # Check for APPLICATIONINSIGHTS_CONNECTION_STRING + ai_conn_str = None + for env in env_vars: + if env.get("name") == "APPLICATIONINSIGHTS_CONNECTION_STRING": + ai_conn_str = env.get("value") + break + + if not ai_conn_str: + raise CLIError(f"Required application setting APPLICATIONINSIGHTS_CONNECTION_STRING not present in the containerapp '{container_app_name}'.") + + # Extract ApplicationId from the connection string + app_id = None + parts = ai_conn_str.split(";") + for part in parts: + if part.startswith("ApplicationId="): + app_id = part.split("=", 1)[1] + break + + if not app_id: + raise CLIError(f"ApplicationId not found in APPLICATIONINSIGHTS_CONNECTION_STRING for containerapp '{container_app_name}'.") + return app_id + + @classmethod + def _execute_app_insights_query(cls, cmd, app_id, query, queryType, timespan="30D"): + + # Application Insights REST API endpoint + api_endpoint = "https://api.applicationinsights.io" + url = f"{api_endpoint}/v1/apps/{app_id}/query?api-version={cls.APP_INSIGHTS_API_VERSION}&queryType={queryType}" + + # Prepare the request body + body = { + "query": query, + "timespan": f"P{timespan}" + } + + # Execute the query using Azure CLI's send_raw_request + response = send_raw_request( + cmd.cli_ctx, + "POST", + url, + body=json.dumps(body), + headers=["Content-Type=application/json"] + ) + + result = response.json() + if isinstance(result, dict) and 'error' in result: + raise CLIError(f"Error retrieving invocations details: {result['error']}") + return result + + @classmethod + def show_function_keys(cls, cmd, resource_group_name, name, key_type, key_name, function_name=None, revision_name=None, replica_name=None, container_name=None): + from .custom import containerapp_debug + + command_fmt = "" + if key_type != "functionKey": + command_fmt = "/bin/azure-functions-admin keys show --key-type {} --key-name {}" + command = command_fmt.format(key_type, key_name) + else: + command_fmt = "/bin/azure-functions-admin keys show --key-type {} --key-name {} --function-name {}" + command = command_fmt.format(key_type, key_name, function_name) + + r = containerapp_debug( + cmd=cmd, + resource_group_name=resource_group_name, + name=name, + container=container_name, + revision=revision_name, + replica=replica_name, + debug_command=command + ) + if not r: + raise CLIError(f"Error retrieving function key '{key_name}' of type '{key_type}'.") + return r + + @classmethod + def list_function_keys(cls, cmd, resource_group_name, name, key_type, function_name=None, revision_name=None, replica_name=None, container_name=None): + from .custom import containerapp_debug + + command_fmt = "" + if key_type != "functionKey": + command_fmt = "/bin/azure-functions-admin keys list --key-type {}" + command = command_fmt.format(key_type) + else: + command_fmt = "/bin/azure-functions-admin keys list --key-type {} --function-name {}" + command = command_fmt.format(key_type, function_name) + + r = containerapp_debug( + cmd=cmd, + resource_group_name=resource_group_name, + name=name, + container=container_name, + revision=revision_name, + replica=replica_name, + debug_command=command + ) + if not r: + raise CLIError(f"Error retrieving function keys of type '{key_type}'.") + return r + + @classmethod + def set_function_keys(cls, cmd, resource_group_name, name, key_type, key_name, key_value, function_name=None, revision_name=None, replica_name=None, container_name=None): + """Set/Update function keys based on key type""" + from .custom import containerapp_debug + + command_fmt = "" + if key_type != "functionKey": + command_fmt = "/bin/azure-functions-admin keys set --key-type {} --key-name {}" + command = command_fmt.format(key_type, key_name) + else: + command_fmt = "/bin/azure-functions-admin keys set --key-type {} --key-name {} --function-name {}" + command = command_fmt.format(key_type, key_name, function_name) + + if key_value is not None: + command += " --key-value {}".format(key_value) + + r = containerapp_debug( + cmd=cmd, + resource_group_name=resource_group_name, + name=name, + container=container_name, + revision=revision_name, + replica=replica_name, + debug_command=command + ) + if not r: + raise CLIError(f"Error setting function key '{key_name}' of type '{key_type}'.") + return r + + class DaprComponentResiliencyPreviewClient(): api_version = PREVIEW_API_VERSION diff --git a/src/containerapp/azext_containerapp/_help.py b/src/containerapp/azext_containerapp/_help.py index b2640648aa1..cb08b8658a7 100644 --- a/src/containerapp/azext_containerapp/_help.py +++ b/src/containerapp/azext_containerapp/_help.py @@ -161,12 +161,11 @@ - name: Create a container app and deploy a model from Azure AI Foundry text: | az containerapp up -n my-containerapp -l westus3 --model-registry azureml --model-name Phi-4 --model-version 7 - - name: Create an Azure Functions on Azure Container Apps (kind=functionapp) + - name: Create an Azure Functions on Container Apps (kind=functionapp) text: | az containerapp up -n my-containerapp --image my-app:v1.0 --kind functionapp """ - helps['containerapp replica count'] = """ type: command short-summary: Count of a container app's replica(s) @@ -179,6 +178,135 @@ az containerapp replica count -n my-containerapp -g MyResourceGroup """ +helps['containerapp function'] = """ + type: group + short-summary: Commands related to Azure Functions on Container Apps. +""" + +helps['containerapp function list'] = """ + type: command + short-summary: List all functions in an Azure Functions on Container Apps. + long-summary: | + --revision is required only if the app is not in single revision mode. + Run to check activerevisionmode: az containerapp show -n my-containerapp -g MyResourceGroup --query properties.configuration.activeRevisionsMode + examples: + - name: List all functions in an Azure Functions on Container Apps. (single active revision mode) + text: | + az containerapp function list -n my-containerapp -g MyResourceGroup + - name: List all functions in an Azure Functions on Container Apps for a specific revision. + text: | + az containerapp function list -n my-containerapp -g MyResourceGroup --revision MyRevision +""" + +helps['containerapp function show'] = """ + type: command + short-summary: Get details of a function in an Azure Functions on Container Apps. + long-summary: | + --revision is required only if the app is not in single revision mode. + Run to check activerevisionmode: az containerapp show -n my-containerapp -g MyResourceGroup --query properties.configuration.activeRevisionsMode + examples: + - name: Show details of a function in an Azure Functions on Container Apps. (single active revision mode) + text: | + az containerapp function show -n my-containerapp -g MyResourceGroup --function-name MyFunction + - name: Show details of a function in an Azure Functions on Container Apps for a specific revision. + text: | + az containerapp function show -n my-containerapp -g MyResourceGroup --function-name MyFunction --revision MyRevision +""" + +helps['containerapp function keys'] = """ + type: group + short-summary: Commands for keys management in an Azure Functions on Container Apps. +""" + +helps['containerapp function keys show'] = """ + type: command + short-summary: Show specific function key in an Azure Functions on Container Apps. + examples: + - name: Show a function key for a specific function in an Azure Functions on Container Apps. + text: | + az containerapp function keys show -n my-containerapp -g MyResourceGroup --key-type functionKey --key-name default --function-name MyFunctionName + - name: Show a host key for an Azure Functions on Container Apps. + text: | + az containerapp function keys show -n my-containerapp -g MyResourceGroup --key-type hostKey --key-name default + - name: Show a master key for an Azure Functions on Container Apps. + text: | + az containerapp function keys show -n my-containerapp -g MyResourceGroup --key-type masterKey --key-name _master + - name: Show a system key for an Azure Functions on Container Apps. + text: | + az containerapp function keys show -n my-containerapp -g MyResourceGroup --key-type systemKey --key-name MyKeyName +""" + +helps['containerapp function keys list'] = """ + type: command + short-summary: List function keys in an Azure Functions on Container Apps. + examples: + - name: List function keys for a specific function in an Azure Functions on Container Apps. + text: | + az containerapp function keys list -n my-containerapp -g MyResourceGroup --key-type functionKey --function-name MyFunctionName + - name: List host keys for an Azure Functions on Container Apps. + text: | + az containerapp function keys list -n my-containerapp -g MyResourceGroup --key-type hostKey + - name: List master keys for an Azure Functions on Container Apps. + text: | + az containerapp function keys list -n my-containerapp -g MyResourceGroup --key-type masterKey + - name: List system keys for an Azure Functions on Container Apps. + text: | + az containerapp function keys list -n my-containerapp -g MyResourceGroup --key-type systemKey +""" + +helps['containerapp function keys set'] = """ + type: command + short-summary: Create or update specific function key in an Azure Functions on Container Apps. + examples: + - name: Create or update a function key for a specific function in an Azure Functions on Container Apps. + text: | + az containerapp function keys set -n my-containerapp -g MyResourceGroup --key-type functionKey --key-name default --key-value MyKeyValue --function-name MyFunctionName + - name: Create or update a host key for an Azure Functions on Container Apps. + text: | + az containerapp function keys set -n my-containerapp -g MyResourceGroup --key-type hostKey --key-name default --key-value MyKeyValue + - name: Create or update the master key for an Azure Functions on Container Apps. + text: | + az containerapp function keys set -n my-containerapp -g MyResourceGroup --key-type masterKey --key-name _master --key-value MyKeyValue + - name: Create or update a system key for an Azure Functions on Container Apps. + text: | + az containerapp function keys set -n my-containerapp -g MyResourceGroup --key-type systemKey --key-name MyKeyName --key-value MyKeyValue +""" + +helps['containerapp function invocations'] = """ + type: group + short-summary: Commands to get function invocation data and traces from Application Insights. +""" + +helps['containerapp function invocations summary'] = """ + type: command + short-summary: Get function invocation summary from Application Insights. + examples: + - name: Get invocation summary for a function with default timespan (30 days) + text: | + az containerapp function invocations summary -n my-containerapp -g MyResourceGroup --function-name MyFunction + - name: Get invocation summary for a function with specific timespan + text: | + az containerapp function invocations summary -n my-containerapp -g MyResourceGroup --function-name MyFunction --timespan 7d + - name: Get invocation summary for a function in a specific revision + text: | + az containerapp function invocations summary -n my-containerapp -g MyResourceGroup --function-name MyFunction --revision MyRevision +""" + +helps['containerapp function invocations traces'] = """ + type: command + short-summary: Get function invocation traces from Application Insights. + examples: + - name: Get invocation traces for a function with default timespan (30 days) + text: | + az containerapp function invocations traces -n my-containerapp -g MyResourceGroup --function-name MyFunction + - name: Get invocation traces for a function with specific timespan + text: | + az containerapp function invocations traces -n my-containerapp -g MyResourceGroup --function-name MyFunction --timespan 24h + - name: Get invocation traces for a function in a specific revision + text: | + az containerapp function invocations traces -n my-containerapp -g MyResourceGroup --function-name MyFunction --revision MyRevision +""" + # Environment Commands helps['containerapp env'] = """ type: group @@ -920,7 +1048,7 @@ az containerapp create -n my-containerapp -g MyResourceGroup \\ --image my-app:v1.0 --environment MyContainerappEnv \\ --enable-java-agent - - name: Create an Azure Functions on Azure Container Apps (kind=functionapp) + - name: Create an Azure Functions on Container Apps (kind=functionapp) text: | az containerapp create -n my-containerapp -g MyResourceGroup \\ --image my-app:v1.0 --environment MyContainerappEnv \\ @@ -2304,11 +2432,14 @@ helps['containerapp debug'] = """ type: command - short-summary: Open an SSH-like interactive shell within a container app debug console. + short-summary: Open an SSH-like interactive shell within a container app debug console or execute a command inside the container and exit. examples: - name: Debug by connecting to a container app's debug console by replica, revision and container text: | az containerapp debug -n MyContainerapp -g MyResourceGroup --revision MyRevision --replica MyReplica --container MyContainer + - name: Debug by executing a command inside a container app and exit + text: | + az containerapp debug -n MyContainerapp -g MyResourceGroup --revision MyRevision --replica MyReplica --container MyContainer --command "echo Hello World" """ helps['containerapp label-history'] = """ diff --git a/src/containerapp/azext_containerapp/_params.py b/src/containerapp/azext_containerapp/_params.py index fc634fbb466..acfa02431cb 100644 --- a/src/containerapp/azext_containerapp/_params.py +++ b/src/containerapp/azext_containerapp/_params.py @@ -31,7 +31,7 @@ def load_arguments(self, _): c.argument('revisions_mode', arg_type=get_enum_type(['single', 'multiple', 'labels']), help="The active revisions mode for the container app.") with self.argument_context('containerapp') as c: - c.argument('kind', arg_type=get_enum_type(['functionapp']), help="Set to 'functionapp' to enable built-in support and autoscaling for Azure Functions on Azure Container Apps.", is_preview=True) + c.argument('kind', arg_type=get_enum_type(['functionapp']), help="Set to 'functionapp' to enable built-in support and autoscaling for Azure Functions on Container Apps.", is_preview=True) with self.argument_context('containerapp create') as c: c.argument('source', help="Local directory path containing the application source and Dockerfile for building the container image. Preview: If no Dockerfile is present, a container image is generated using buildpacks. If Docker is not running or buildpacks cannot be used, Oryx will be used to generate the image. See the supported Oryx runtimes here: https://aka.ms/SourceToCloudSupportedVersions.", is_preview=True) @@ -507,6 +507,8 @@ def load_arguments(self, _): c.argument('all', help="The flag to indicate all logger settings.", action="store_true") with self.argument_context('containerapp debug') as c: + c.argument('debug_command', options_list=['--command'], + help="The command to run inside the debug container and exit. If specified, the command is run and the session ends. If not specified, an interactive bash shell is started.") c.argument('container', help="The container name that the debug console will connect to. Default to the first container of first replica.") c.argument('replica', @@ -536,3 +538,43 @@ def load_arguments(self, _): c.argument('termination_grace_period', options_list=['--termination-grace-period', '-t'], type=int, help="Time in seconds to drain requests during ingress shutdown. Default 500, minimum 0, maximum 3600.") c.argument('request_idle_timeout', options_list=['--request-idle-timeout'], type=int, help="Timeout in minutes for idle requests. Default 4, minimum 4, maximum 30.") c.argument('header_count_limit', options_list=['--header-count-limit'], type=int, help="Limit of http headers per request. Default 100, minimum 1.") + + with self.argument_context('containerapp function') as c: + c.argument('resource_group_name', arg_type=resource_group_name_type, id_part=None) + c.argument('name', name_type, id_part=None, options_list=['--name', '-n'], help="The name of the Container App.") + + with self.argument_context('containerapp function list') as c: + c.argument('revision_name', options_list=['--revision', '-r'], help="The name of the revision to list functions from. It is required if container app is running in multiple or labels revision mode.") + + with self.argument_context('containerapp function show') as c: + c.argument('function_name', options_list=['--function-name'], help="The name of the function to show details for.") + c.argument('revision_name', options_list=['--revision', '-r'], help="The name of the revision to get the function from. It is required if container app is running in multiple or labels revision mode.") + + with self.argument_context('containerapp function keys show') as c: + c.argument('revision_name', options_list=['--revision'], help="The name of the container app revision. It is required if container app is running in multiple or labels revision mode.") + c.argument('key_type', options_list=['--key-type'], arg_type=get_enum_type(['functionKey', 'hostKey', 'masterKey', 'systemKey']), help="The type of the key to show.", required=True) + c.argument('key_name', options_list=['--key-name'], help="The name of the key to show.", required=True) + c.argument('function_name', options_list=['--function-name'], help="The name of the function. Required only when key-type is functionKey.") + + with self.argument_context('containerapp function keys list') as c: + c.argument('revision_name', options_list=['--revision'], help="The name of the container app revision. It is required if container app is running in multiple or labels revision mode.") + c.argument('key_type', options_list=['--key-type'], arg_type=get_enum_type(['functionKey', 'hostKey', 'masterKey', 'systemKey']), help="The type of the keys to list.", required=True) + c.argument('function_name', options_list=['--function-name'], help="The name of the function. Required only when key-type is functionKey.") + + with self.argument_context('containerapp function keys set') as c: + c.argument('revision_name', options_list=['--revision'], help="The name of the container app revision. It is required if container app is running in multiple or labels revision mode.") + c.argument('key_type', options_list=['--key-type'], arg_type=get_enum_type(['functionKey', 'hostKey', 'masterKey', 'systemKey']), help="The type of the key to set/update.", required=True) + c.argument('key_name', options_list=['--key-name'], help="The name of the key to create or update.", required=True) + c.argument('key_value', options_list=['--key-value'], help="The value of the key to create or update. Do not provide this argument to regenerate the key with a new value.", required=False) + c.argument('function_name', options_list=['--function-name'], help="The name of the function. Required only when key-type is functionKey.") + + with self.argument_context('containerapp function invocations summary') as c: + c.argument('revision_name', options_list=['--revision'], help="The name of the container app revision. It is required if container app is running in multiple or labels revision mode.") + c.argument('function_name', options_list=['--function-name'], help="The name of the function.", required=True) + c.argument('timespan', options_list=['--timespan'], help="The timespan for which to query the invocation data (e.g., '30d', '7d', '24h', '1h'). Default is '30d'.") + + with self.argument_context('containerapp function invocations traces') as c: + c.argument('revision_name', options_list=['--revision'], help="The name of the container app revision. It is required if container app is running in multiple or labels revision mode.") + c.argument('function_name', options_list=['--function-name'], help="The name of the function.", required=True) + c.argument('timespan', options_list=['--timespan'], help="The timespan for which to query the invocation traces (e.g., '30d', '7d', '24h', '1h'). Default is '30d'.") + c.argument('limit', options_list=['--limit'], help="The maximum number of traces to return. Default is 20", type=int, default=20) diff --git a/src/containerapp/azext_containerapp/_ssh_utils.py b/src/containerapp/azext_containerapp/_ssh_utils.py index eae3ca9a776..3bb8a93fa96 100644 --- a/src/containerapp/azext_containerapp/_ssh_utils.py +++ b/src/containerapp/azext_containerapp/_ssh_utils.py @@ -22,10 +22,10 @@ def _get_url(self, cmd, resource_group_name, name, revision, replica, container, sub = get_subscription_id(cmd.cli_ctx) base_url = self._logstream_endpoint proxy_api_url = base_url[:base_url.index("/subscriptions/")].replace("https://", "") - - return (f"wss://{proxy_api_url}/subscriptions/{sub}/resourceGroups/{resource_group_name}/containerApps/{name}" - f"/revisions/{revision}/replicas/{replica}/debug" - f"?targetContainer={container}") + debug_url = (f"wss://{proxy_api_url}/subscriptions/{sub}/resourceGroups/{resource_group_name}/" + f"containerApps/{name}/revisions/{revision}/replicas/{replica}/debug" + f"?targetContainer={container}") + return debug_url def read_debug_ssh(connection: WebSocketConnection, response_encodings): diff --git a/src/containerapp/azext_containerapp/_transformers.py b/src/containerapp/azext_containerapp/_transformers.py index 93ebda24bf3..190f047f293 100644 --- a/src/containerapp/azext_containerapp/_transformers.py +++ b/src/containerapp/azext_containerapp/_transformers.py @@ -5,6 +5,7 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=bare-except, line-too-long +import json from knack.log import get_logger from azure.cli.command_modules.containerapp._utils import safe_set, safe_get @@ -153,3 +154,149 @@ def transform_telemetry_otlp_values_by_name(response_json): raise ResourceNotFoundError(f"Otlp entry with name --otlp-name {otlp_name} does not exist, please retry with different name") return transform_telemetry_otlp_values_by_name + + +def transform_function_list(result): + from collections import OrderedDict + + if not result: + return [] + + functions = result.get('value', []) if isinstance(result, dict) else result + table = [] + for func in functions: + if isinstance(func, dict): + name = func.get('name', '') + location = func.get('location', '') + properties = func.get('properties', {}) + trigger_type = properties.get('triggerType', '').replace('Trigger', '') + disabled = properties.get('isDisabled', False) + + table.append(OrderedDict([ + ('Name', name), + ('Location', location), + ('TriggerType', trigger_type), + ('IsDisabled', str(disabled)), + ('Language', properties.get('language', '')) + ])) + + return table + + +def transform_function_show(result): + from collections import OrderedDict + + if not result: + return [] + + properties = result.get('properties', {}) + table = [] + table.append(OrderedDict([('Property', 'Name'), ('Value', result.get('name', ''))])) + table.append(OrderedDict([('Property', 'Location'), ('Value', result.get('location', ''))])) + table.append(OrderedDict([('Property', 'TriggerType'), ('Value', properties.get('triggerType', ''))])) + table.append(OrderedDict([('Property', 'IsDisabled'), ('Value', str(properties.get('isDisabled', False)))])) + table.append(OrderedDict([('Property', 'Language'), ('Value', properties.get('language', ''))])) + table.append(OrderedDict([('Property', 'InvokeUrl'), ('Value', properties.get('invokeUrlTemplate', ''))])) + + return table + + +def process_app_insights_response(response): + if not response or 'tables' not in response: + return [] + + results = [] + for table in response['tables']: + if 'columns' in table and 'rows' in table: + columns = [col['name'] for col in table['columns']] + for row in table['rows']: + if len(row) == len(columns): + result_obj = {} + for i, value in enumerate(row): + result_obj[columns[i]] = value + results.append(result_obj) + + return results + + +def transform_function_traces(result): + from collections import OrderedDict + if not result: + return [] + + traces = result if isinstance(result, list) else [] + + table = [] + for trace in traces: + if isinstance(trace, dict): + table.append(OrderedDict([ + ('Timestamp', trace.get('timestamp', '')), + ('Success', trace.get('success', '')), + ('ResultCode', trace.get('resultCode', '')), + ('DurationInMilliSeconds', trace.get('durationInMilliSeconds', '')), + ('InvocationId', trace.get('invocationId', '')), + ('OperationId', trace.get('operationId', '')), + ('OperationName', trace.get('operationName', '')), + ('FunctionNameFromCustomDimension', trace.get('functionNameFromCustomDimension', '')) + ])) + + return table + + +def transform_debug_command_output(raw_output): + try: + if "$id" in raw_output: + del raw_output["$id"] + + if "output" in raw_output: + output_str = raw_output["output"] + try: + parsed_output = json.loads(output_str) + return parsed_output + except json.JSONDecodeError: + decoded_output = output_str.encode().decode('unicode_escape') + return decoded_output + else: + return raw_output + + except (KeyError, UnicodeDecodeError): + if "$id" in raw_output: + del raw_output["$id"] + return raw_output + + +def transform_function_keys_show_set(result): + from collections import OrderedDict + + if not result: + return [] + + if isinstance(result, dict) and "value" in result: + key_data = result["value"] + table = [] + table.append(OrderedDict([('Property', 'Name'), ('Value', key_data.get('name', ''))])) + table.append(OrderedDict([('Property', 'Value'), ('Value', key_data.get('value', ''))])) + return table + + return [] + + +def transform_function_keys_list(result): + from collections import OrderedDict + if not result: + return [] + + if isinstance(result, dict) and "value" in result: + value_data = result["value"] + if isinstance(value_data, dict) and "keys" in value_data: + keys = value_data["keys"] + table = [] + for key in keys: + if isinstance(key, dict): + table.append(OrderedDict([ + ('Name', key.get('name', '')), + ('Value', key.get('value', '')) + ])) + return table + + return [] diff --git a/src/containerapp/azext_containerapp/_utils.py b/src/containerapp/azext_containerapp/_utils.py index d08435ef21b..e1636df7a2e 100644 --- a/src/containerapp/azext_containerapp/_utils.py +++ b/src/containerapp/azext_containerapp/_utils.py @@ -15,6 +15,7 @@ import requests import shutil import packaging.version as SemVer +import random from enum import Enum from urllib.request import urlopen @@ -22,6 +23,7 @@ from azure.cli.command_modules.acr.custom import acr_show from azure.cli.command_modules.containerapp._utils import safe_get, _ensure_location_allowed, \ _generate_log_analytics_if_not_provided +from azure.cli.command_modules.containerapp._clients import ContainerAppClient from azure.cli.command_modules.containerapp._client_factory import handle_raw_exception from azure.cli.core._profile import Profile from azure.cli.core.azclierror import (ValidationError, ResourceNotFoundError, CLIError, InvalidArgumentValueError) @@ -831,3 +833,45 @@ def create_acrpull_role_assignment_if_needed(cmd, registry_server, registry_iden raise UnauthorizedError(message) from e else: time.sleep(5) + + +def get_random_replica(cmd, resource_group_name, container_app_name, revision_name): + logger.debug(f"Getting random replica for container app: name='{container_app_name}', resource_group='{resource_group_name}', revision='{revision_name}'") + + try: + replicas = ContainerAppClient.list_replicas( + cmd=cmd, + resource_group_name=resource_group_name, + container_app_name=container_app_name, + revision_name=revision_name + ) + except Exception as e: + logger.debug(f"Failed to list replicas for revision '{revision_name}': {str(e)}") + handle_raw_exception(e) + + if not replicas: + logger.debug(f"No replicas found for revision '{revision_name}' - unable to proceed") + raise CLIError(f"No replicas found for revision '{revision_name}' of container app '{container_app_name}'.") + + # Filter replicas by running state + running_replicas = [ + replica for replica in replicas + if replica.get("properties", {}).get("runningState") == "Running" + ] + + if not running_replicas: + raise ValidationError(f"No running replicas found for revision '{revision_name}' of container app '{container_app_name}'.") + + # Select the replica with the latest creation time + # createdTime is in ISO 8601 format (e.g., "2025-10-03T00:56:33Z") which is lexicographically sortable + replica = max(running_replicas, key=lambda r: r.get("properties", {}).get("createdTime", "1900-01-01T00:00:00Z")) + replica_name = replica.get("name") + container_name = replica.get("properties", {}).get("containers", [{}])[0].get("name") + + logger.debug(f"Selected random replica: '{replica_name}' with container: '{container_name}'") + + if not replica_name: + logger.debug(f"Could not extract replica name from selected replica: {replica}") + raise CLIError(f"Could not determine replica name for revision '{revision_name}' of container app '{container_app_name}'.") + + return replica_name, container_name diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index 66944ce79c0..ee7af6c7f24 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -9,15 +9,12 @@ from azure.cli.core.azclierror import (InvalidArgumentValueError, MutuallyExclusiveArgumentError, RequiredArgumentMissingError, - ResourceNotFoundError, ValidationError) + ResourceNotFoundError, ValidationError, CLIError) +from azure.core.exceptions import HttpResponseError from azure.cli.command_modules.containerapp._utils import is_registry_msi_system, safe_get from azure.cli.command_modules.containerapp._validators import _validate_revision_exists, _validate_replica_exists, \ _validate_container_exists from azure.mgmt.core.tools import is_valid_resource_id - -from ._clients import ContainerAppPreviewClient -from ._utils import is_registry_msi_system_environment - from ._constants import ACR_IMAGE_SUFFIX, \ CONNECTED_ENVIRONMENT_TYPE, \ EXTENDED_LOCATION_RP, CUSTOM_LOCATION_RESOURCE_TYPE, MAXIMUM_SECRET_LENGTH, CONTAINER_APPS_RP, \ @@ -29,6 +26,8 @@ # called directly from custom method bc otherwise it disrupts the --environment auto RID functionality def validate_create(registry_identity, registry_pass, registry_user, registry_server, no_wait, revisions_mode=None, target_label=None, source=None, artifact=None, repo=None, yaml=None, environment_type=None): + from ._utils import is_registry_msi_system_environment + if source and repo: raise MutuallyExclusiveArgumentError("Usage error: --source and --repo cannot be used together. Can either deploy from a local directory or a GitHub repository") if (source or repo) and yaml: @@ -238,6 +237,8 @@ def validate_debug(cmd, namespace): def _set_debug_defaults(cmd, namespace): + from ._clients import ContainerAppPreviewClient + app = ContainerAppPreviewClient.show(cmd, namespace.resource_group_name, namespace.name) if not app: raise ResourceNotFoundError("Could not find a container app") @@ -276,3 +277,95 @@ def _set_debug_defaults(cmd, namespace): revision_containers = safe_get(revision, "properties", "template", "containers") if revision_containers: namespace.container = revision_containers[0]["name"] + +def validate_container_app_exists(cmd, resource_group_name, container_app_name): + from ._client_factory import handle_raw_exception + from ._clients import ContainerAppPreviewClient + + try: + logger.debug("Attempting to retrieve container app '%s'", container_app_name) + containerapp_def = ContainerAppPreviewClient.show( + cmd=cmd, + resource_group_name=resource_group_name, + name=container_app_name + ) + logger.debug("Successfully retrieved container app definition for '%s'", container_app_name) + except HttpResponseError as e: + logger.debug("Failed to retrieve container app '%s': %s", container_app_name, str(e)) + handle_raw_exception(e) + + if not containerapp_def: + logger.debug("Container app '%s' not found in resource group '%s'", container_app_name, resource_group_name) + raise CLIError(f"The containerapp '{container_app_name}' does not exist in resource group '{resource_group_name}'.") + + return containerapp_def + + +def validate_revision_and_get_name(cmd, resource_group_name, container_app_name, provided_revision_name=None): + + logger.debug("Validating revision for container app: name='%s', resource_group='%s', provided_revision='%s'", container_app_name, resource_group_name, provided_revision_name) + + containerapp_def = validate_container_app_exists( + cmd=cmd, + resource_group_name=resource_group_name, + container_app_name=container_app_name) + + active_revision_mode = safe_get(containerapp_def, "properties", "configuration", "activeRevisionsMode", default="single") + logger.debug("Container app revision mode: '%s'", active_revision_mode) + + if active_revision_mode.lower() != "single": + if not provided_revision_name: + logger.debug("No revision name provided for multiple revision mode container app") + raise ValidationError("Revision name is required when active revision mode is not 'single'.") + return provided_revision_name + if not provided_revision_name: + logger.debug("No revision name provided - attempting to determine latest revision") + revision_name = safe_get(containerapp_def, "properties", "latestRevisionName") + logger.debug("Latest revision name from properties: '%s'", revision_name) + + if not revision_name: + revision_name = safe_get(containerapp_def, "properties", "latestReadyRevisionName") + logger.debug("Latest ready revision name: '%s'", revision_name) + + if not revision_name or revision_name is None: + logger.debug("Could not determine any revision name from container app properties") + raise ValidationError("Could not determine the latest revision name. Please provide --revision.") + return revision_name + logger.debug("Using provided revision name: '%s'", provided_revision_name) + return provided_revision_name + + +def validate_functionapp_kind(cmd, resource_group_name, container_app_name): + + containerapp_def = validate_container_app_exists( + cmd=cmd, + resource_group_name=resource_group_name, + container_app_name=container_app_name + ) + + kind = safe_get(containerapp_def, "kind") + + if kind and kind.lower() == "functionapp": + logger.debug("Container app '%s' validated as Azure Function App", container_app_name) + return + + logger.debug("Container app '%s' is not a function app - validation failed", container_app_name) + raise ValidationError( + f"The containerapp '{container_app_name}' is not an Azure Functions on Container App." + ) + + +def validate_basic_arguments(resource_group_name, container_app_name, **kwargs): + if not resource_group_name: + logger.debug("Resource group name validation failed - empty or None") + raise ValidationError("Resource group name is required.") + + if not container_app_name: + logger.debug("Container app name validation failed - empty or None") + raise ValidationError("Container app name is required.") + + # Validate additional arguments + for arg_name, arg_value in kwargs.items(): + if not arg_value: + logger.debug("Additional argument validation failed: '%s' is empty or None", arg_name) + raise ValidationError(f"{arg_name.replace('_', ' ').title()} is required.") \ No newline at end of file diff --git a/src/containerapp/azext_containerapp/commands.py b/src/containerapp/azext_containerapp/commands.py index b03b89c53e6..8ec95799376 100644 --- a/src/containerapp/azext_containerapp/commands.py +++ b/src/containerapp/azext_containerapp/commands.py @@ -12,7 +12,12 @@ transform_telemetry_data_dog_values, transform_telemetry_app_insights_values, transform_telemetry_otlp_values, - transform_telemetry_otlp_values_by_name_wrapper) + transform_telemetry_otlp_values_by_name_wrapper, + transform_function_list, + transform_function_show, + transform_function_traces, + transform_function_keys_show_set, + transform_function_keys_list) from ._utils import is_cloud_supported_by_connected_env from ._validators import validate_debug @@ -300,3 +305,16 @@ def load_command_table(self, args): g.custom_command('add', 'add_environment_premium_ingress') g.custom_command('update', 'update_environment_premium_ingress') g.custom_command('remove', 'remove_environment_premium_ingress', confirmation=True) + + with self.command_group('containerapp function', is_preview=True) as g: + g.custom_command('list', 'list_containerapp_functions', table_transformer=transform_function_list) + g.custom_show_command('show', 'show_containerapp_function', table_transformer=transform_function_show) + + with self.command_group('containerapp function keys', is_preview=True) as g: + g.custom_show_command('show', 'show_containerapp_function_keys', table_transformer=transform_function_keys_show_set) + g.custom_command('list', 'list_containerapp_function_keys', table_transformer=transform_function_keys_list) + g.custom_command('set', 'set_containerapp_function_keys', table_transformer=transform_function_keys_show_set) + + with self.command_group('containerapp function invocations', is_preview=True) as g: + g.custom_command('summary', 'get_function_invocations_summary') + g.custom_command('traces', 'get_function_invocations_traces', table_transformer=transform_function_traces) diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index c932ff53745..b735d90ff02 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -94,6 +94,18 @@ from .containerapp_session_custom_container_decorator import SessionCustomContainerCommandsPreviewDecorator from .containerapp_job_registry_decorator import ContainerAppJobRegistryPreviewSetDecorator from .containerapp_env_maintenance_config_decorator import ContainerAppEnvMaintenanceConfigPreviewDecorator +from .containerapp_functions_decorator import ( + ContainerAppFunctionsListDecorator, + ContainerAppFunctionsShowDecorator, + ContainerAppFunctionInvocationsDecorator +) +from .containerapp_function_keys_decorator import ( + ContainerAppFunctionKeysShowDecorator, + ContainerAppFunctionKeysListDecorator, + ContainerAppFunctionKeysSetDecorator +) + +from .containerapp_debug_command_decorator import ContainerAppDebugCommandDecorator from .dotnet_component_decorator import DotNetComponentDecorator from ._client_factory import handle_raw_exception, handle_non_404_status_code_exception from ._clients import ( @@ -116,7 +128,8 @@ DotNetComponentPreviewClient, MaintenanceConfigPreviewClient, HttpRouteConfigPreviewClient, - LabelHistoryPreviewClient + LabelHistoryPreviewClient, + ContainerAppFunctionsPreviewClient ) from ._dev_service_utils import DevServiceUtils from ._models import ( @@ -3601,8 +3614,26 @@ def list_maintenance_config(cmd, resource_group_name, env_name): return r -def containerapp_debug(cmd, resource_group_name, name, container=None, revision=None, replica=None): - logger.warning("Connecting...") +def containerapp_debug(cmd, resource_group_name, name, container=None, revision=None, replica=None, debug_command=None): + if debug_command is not None: + raw_parameters = { + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'revision_name': revision, + 'replica_name': replica, + 'container_name': container, + 'command': debug_command + } + debug_command_decorator = ContainerAppDebugCommandDecorator( + cmd=cmd, + client=ContainerAppPreviewClient, + raw_parameters=raw_parameters, + models=CONTAINER_APPS_SDK_MODELS + ) + debug_command_decorator.validate_arguments() + logger.debug("Executing command: %s", debug_command) + return debug_command_decorator.execute_Command(cmd=cmd) + conn = DebugWebSocketConnection( cmd=cmd, resource_group_name=resource_group_name, @@ -3623,14 +3654,12 @@ def containerapp_debug(cmd, resource_group_name, name, container=None, revision= while conn.is_connected: if not reader.is_alive() or not writer.is_alive(): - logger.warning("Reader or Writer for WebSocket is not alive. Closing the connection.") conn.disconnect() try: time.sleep(0.1) except KeyboardInterrupt: if conn.is_connected: - logger.info("Caught KeyboardInterrupt. Sending ctrl+c to server") conn.send(SSH_CTRL_C_MSG) @@ -3960,3 +3989,138 @@ def remove_environment_premium_ingress(cmd, name, resource_group_name, no_wait=F except Exception as e: handle_raw_exception(e) + + +# Container App Functions commands +def list_containerapp_functions(cmd, resource_group_name, name, revision_name=None): + """List functions for a container app or specific revision""" + containerapp_functions_list_decorator = ContainerAppFunctionsListDecorator( + cmd=cmd, + client=ContainerAppFunctionsPreviewClient, + raw_parameters={ + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'revision_name': revision_name + }, + models=CONTAINER_APPS_SDK_MODELS + ) + + return containerapp_functions_list_decorator.list() + + +def show_containerapp_function(cmd, resource_group_name, name, function_name, revision_name=None): + """Show details of a specific function for a container app or revision""" + containerapp_functions_show_decorator = ContainerAppFunctionsShowDecorator( + cmd=cmd, + client=ContainerAppFunctionsPreviewClient, + raw_parameters={ + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'function_name': function_name, + 'revision_name': revision_name + }, + models=CONTAINER_APPS_SDK_MODELS + ) + + return containerapp_functions_show_decorator.show() + + +def show_containerapp_function_keys(cmd, resource_group_name, name, key_type, key_name, function_name=None, revision_name=None): + raw_parameters = { + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'key_type': key_type, + 'key_name': key_name, + 'function_name': function_name, + 'revision_name': revision_name + } + + containerapp_function_keys_show_decorator = ContainerAppFunctionKeysShowDecorator( + cmd=cmd, + client=ContainerAppFunctionsPreviewClient, + raw_parameters=raw_parameters, + models=CONTAINER_APPS_SDK_MODELS + ) + + return containerapp_function_keys_show_decorator.show_keys() + + +def list_containerapp_function_keys(cmd, resource_group_name, name, key_type, function_name=None, revision_name=None): + raw_parameters = { + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'key_type': key_type, + 'function_name': function_name, + 'revision_name': revision_name + } + + containerapp_function_keys_list_decorator = ContainerAppFunctionKeysListDecorator( + cmd=cmd, + client=ContainerAppFunctionsPreviewClient, + raw_parameters=raw_parameters, + models=CONTAINER_APPS_SDK_MODELS + ) + + return containerapp_function_keys_list_decorator.list_keys() + + +def set_containerapp_function_keys(cmd, resource_group_name, name, key_type, key_name, key_value, function_name=None, revision_name=None): + raw_parameters = { + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'key_type': key_type, + 'key_name': key_name, + 'key_value': key_value, + 'function_name': function_name, + 'revision_name': revision_name + } + + containerapp_function_keys_set_decorator = ContainerAppFunctionKeysSetDecorator( + cmd=cmd, + client=ContainerAppFunctionsPreviewClient, + raw_parameters=raw_parameters, + models=CONTAINER_APPS_SDK_MODELS + ) + + return containerapp_function_keys_set_decorator.set_keys() + + +def get_function_invocations_summary(cmd, resource_group_name, name, function_name, revision_name=None, timespan="30d"): + """Get function invocation summary from Application Insights.""" + raw_parameters = { + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'revision_name': revision_name, + 'function_name': function_name, + 'timespan': timespan + } + function_app_decorator = ContainerAppFunctionInvocationsDecorator( + cmd=cmd, + client=ContainerAppFunctionsPreviewClient, + raw_parameters=raw_parameters, + models=CONTAINER_APPS_SDK_MODELS + ) + function_app_decorator.validate_subscription_registered(CONTAINER_APPS_RP) + result = function_app_decorator.get_summary() + return result + + +def get_function_invocations_traces(cmd, resource_group_name, name, function_name, revision_name=None, timespan="30d", limit=20): + """Get function invocation traces from Application Insights.""" + raw_parameters = { + 'resource_group_name': resource_group_name, + 'container_app_name': name, + 'revision_name': revision_name, + 'function_name': function_name, + 'timespan': timespan, + 'limit': limit + } + function_app_decorator = ContainerAppFunctionInvocationsDecorator( + cmd=cmd, + client=ContainerAppFunctionsPreviewClient, + raw_parameters=raw_parameters, + models=CONTAINER_APPS_SDK_MODELS + ) + function_app_decorator.validate_subscription_registered(CONTAINER_APPS_RP) + result = function_app_decorator.get_traces() + return result diff --git a/src/containerapp/azext_containerapp/tests/latest/utils.py b/src/containerapp/azext_containerapp/tests/latest/utils.py index 920807bcb53..322e189fa56 100644 --- a/src/containerapp/azext_containerapp/tests/latest/utils.py +++ b/src/containerapp/azext_containerapp/tests/latest/utils.py @@ -36,6 +36,28 @@ def prepare_containerapp_env_for_app_e2e_tests(test_cls, location=TEST_LOCATION) managed_env = test_cls.cmd('containerapp env show -g {} -n {}'.format(rg_name, env_name)).get_output_in_json() return managed_env["id"] +def prepare_containerapp_env_v1_for_app_e2e_tests(test_cls, location=TEST_LOCATION): + from azure.cli.core.azclierror import CLIInternalError + rg_name = f'client.env_v1_rg_{location}'.lower().replace(" ", "").replace("(", "").replace(")", "") + env_name = f'env-v1-{location}'.lower().replace(" ", "").replace("(", "").replace(")", "") + managed_env = None + try: + managed_env = test_cls.cmd('containerapp env show -g {} -n {}'.format(rg_name, env_name)).get_output_in_json() + except CLIInternalError as e: + if e.error_msg.__contains__('ResourceGroupNotFound') or e.error_msg.__contains__('ResourceNotFound'): + # resource group is not available in North Central US (Stage), if the TEST_LOCATION is "northcentralusstage", use eastus as location + rg_location = location + if format_location(rg_location) == format_location(STAGE_LOCATION): + rg_location = "eastus" + test_cls.cmd(f'group create -n {rg_name} -l {rg_location}') + test_cls.cmd(f'containerapp env create -g {rg_name} -n {env_name} --logs-destination none --enable-workload-profiles false', expect_failure=False) + managed_env = test_cls.cmd('containerapp env show -g {} -n {}'.format(rg_name, env_name)).get_output_in_json() + + while managed_env["properties"]["provisioningState"].lower() == "waiting": + time.sleep(5) + managed_env = test_cls.cmd('containerapp env show -g {} -n {}'.format(rg_name, env_name)).get_output_in_json() + return managed_env["id"] + def create_vent_subnet(self, resource_group, vnet, delegations='Microsoft.App/environments', location="centralus"): self.cmd(f"az network vnet create --address-prefixes '14.0.0.0/23' -g {resource_group} -n {vnet} --location {location}") From fb17f16ea7da33a0101f604b8b87c94577301417 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Wed, 15 Oct 2025 12:36:52 +0000 Subject: [PATCH 02/15] adding all the missing files --- .../containerapp_debug_command_decorator.py | 89 + .../containerapp_function_keys_decorator.py | 184 + .../containerapp_functions_decorator.py | 236 + ...p_function_invocations_summary_traces.yaml | 7578 ++++++++++++++++ .../test_containerapp_function_keys.yaml | 7588 +++++++++++++++++ ...containerapp_function_list_show_basic.yaml | 1959 +++++ ...pp_function_list_show_error_scenarios.yaml | 3488 ++++++++ ...ion_list_show_multirevision_scenarios.yaml | 4149 +++++++++ .../latest/test_containerapp_function.py | 483 ++ 9 files changed, 25754 insertions(+) create mode 100644 src/containerapp/azext_containerapp/containerapp_debug_command_decorator.py create mode 100644 src/containerapp/azext_containerapp/containerapp_function_keys_decorator.py create mode 100644 src/containerapp/azext_containerapp/containerapp_functions_decorator.py create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml create mode 100644 src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py diff --git a/src/containerapp/azext_containerapp/containerapp_debug_command_decorator.py b/src/containerapp/azext_containerapp/containerapp_debug_command_decorator.py new file mode 100644 index 00000000000..19478bc1c62 --- /dev/null +++ b/src/containerapp/azext_containerapp/containerapp_debug_command_decorator.py @@ -0,0 +1,89 @@ +# coding=utf-8 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long, broad-except, logging-format-interpolation, too-many-public-methods, too-many-boolean-expressions, logging-fstring-interpolation + +from knack.log import get_logger +import urllib +from azure.cli.core.azclierror import ValidationError +from azure.cli.command_modules.containerapp.base_resource import BaseResource +from azure.cli.core.commands.client_factory import get_subscription_id +from azure.cli.core.util import send_raw_request +from ._transformers import transform_debug_command_output + +from ._validators import validate_basic_arguments + +logger = get_logger(__name__) + + +class ContainerAppDebugCommandDecorator(BaseResource): + """Base decorator for Container App Debug Command Operations""" + + def get_argument_resource_group_name(self): + return self.get_param('resource_group_name') + + def get_argument_container_app_name(self): + return self.get_param('container_app_name') + + def get_argument_revision_name(self): + return self.get_param("revision_name") + + def get_argument_replica_name(self): + return self.get_param("replica_name") + + def get_argument_container_name(self): + return self.get_param("container_name") + + def get_argument_command(self): + return self.get_param("command") + + def validate_arguments(self): + validate_basic_arguments( + resource_group_name=self.get_argument_resource_group_name(), + container_app_name=self.get_argument_container_app_name(), + revision_name=self.get_argument_revision_name(), + replica_name=self.get_argument_replica_name(), + container_name=self.get_argument_container_name(), + command=self.get_argument_command() + ) + + def _get_logstream_endpoint(self, cmd, resource_group_name, container_app_name, revision_name, replica_name, container_name): + """Get the logstream endpoint for the specified container in the replica""" + containers = self.client.get_replica(cmd, + resource_group_name, + container_app_name, revision_name, replica_name)["properties"]["containers"] + container_info = [c for c in containers if c["name"] == container_name] + if not container_info: + raise ValidationError(f"Error retrieving container in revision '{revision_name}' in the container app '{container_app_name}'.") + return container_info[0]["logStreamEndpoint"] + + def _get_url(self, cmd, resource_group_name, container_app_name, revision_name, replica_name, container_name, command): + """Get the debug url for the specified container in the replica""" + base_url = self._get_logstream_endpoint(cmd, resource_group_name, container_app_name, revision_name, replica_name, container_name) + proxy_api_url = base_url[:base_url.index("/subscriptions/")] + sub = get_subscription_id(cmd.cli_ctx) + encoded_cmd = urllib.parse.quote_plus(command) + debug_url = (f"{proxy_api_url}/subscriptions/{sub}/resourceGroups/{resource_group_name}/containerApps/{container_app_name}" + f"/revisions/{revision_name}/replicas/{replica_name}/debug" + f"?targetContainer={container_name}&command={encoded_cmd}") + return debug_url + + def _get_auth_token(self, cmd, resource_group_name, container_app_name): + token_response = self.client.get_auth_token(cmd, resource_group_name, container_app_name) + return token_response["properties"]["token"] + + def execute_Command(self, cmd): + """Execute the command in the specified container in the replica""" + resource_group_name = self.get_argument_resource_group_name() + container_app_name = self.get_argument_container_app_name() + revision_name = self.get_argument_revision_name() + replica_name = self.get_argument_replica_name() + container_name = self.get_argument_container_name() + command = self.get_argument_command() + url = self._get_url(cmd, resource_group_name, container_app_name, revision_name, replica_name, container_name, command) + token = self._get_auth_token(cmd, resource_group_name, container_app_name) + headers = [f"Authorization=Bearer {token}"] + r = send_raw_request(cmd.cli_ctx, "GET", url, headers=headers) + return transform_debug_command_output(r.json()) diff --git a/src/containerapp/azext_containerapp/containerapp_function_keys_decorator.py b/src/containerapp/azext_containerapp/containerapp_function_keys_decorator.py new file mode 100644 index 00000000000..a37a25b173f --- /dev/null +++ b/src/containerapp/azext_containerapp/containerapp_function_keys_decorator.py @@ -0,0 +1,184 @@ +# coding=utf-8 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long, broad-except, logging-format-interpolation + +from knack.log import get_logger +from azure.cli.core.azclierror import ValidationError +from azure.cli.command_modules.containerapp.base_resource import BaseResource +from ._client_factory import handle_raw_exception +from ._validators import validate_basic_arguments, validate_revision_and_get_name, validate_functionapp_kind +from ._utils import get_random_replica + +logger = get_logger(__name__) + + +class ContainerAppFunctionKeysDecorator(BaseResource): + """Base decorator for Container App Function Keys operations""" + + def get_argument_function_name(self): + return self.get_param("function_name") + + def get_argument_revision(self): + return self.get_param("revision_name") + + def get_argument_key_type(self): + return self.get_param("key_type") + + def get_argument_name(self): + return self.get_param("container_app_name") + + def get_argument_key_name(self): + return self.get_param("key_name") + + def get_argument_key_value(self): + return self.get_param("key_value") + + def validate_common_arguments(self): + """Validate common arguments required for all function key operations""" + resource_group_name = self.get_argument_resource_group_name() + name = self.get_argument_name() + revision_name = self.get_argument_revision() + key_type = self.get_argument_key_type() + + # Validate basic arguments + validate_basic_arguments( + resource_group_name=resource_group_name, + container_app_name=name, + key_type=key_type + ) + + # Validate that the Container App has kind 'functionapp' + validate_functionapp_kind( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name + ) + + # Validate revision and get the appropriate revision name + revision_name = validate_revision_and_get_name( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name, + provided_revision_name=revision_name + ) + + # Get a random replica for the revision + replica_name, container_name = get_random_replica( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name, + revision_name=revision_name + ) + + return resource_group_name, name, revision_name, key_type, replica_name, container_name + + def validate_function_name_requirement(self, key_type): + """Validate function name is provided when required for functionKey type""" + function_name = self.get_argument_function_name() + + if key_type == "functionKey" and not function_name: + raise ValidationError("Function name is required when key-type is 'functionKey'.") + + return function_name + + +class ContainerAppFunctionKeysShowDecorator(ContainerAppFunctionKeysDecorator): + """Decorator for showing specific function keys""" + + def validate_show_arguments(self): + """Validate arguments required for showing function keys""" + resource_group_name, name, revision_name, key_type, replica_name, container_name = self.validate_common_arguments() + key_name = self.get_argument_key_name() + function_name = self.validate_function_name_requirement(key_type) + + if not key_name: + raise ValidationError("Key name is required.") + + return resource_group_name, name, revision_name, key_type, key_name, function_name, replica_name, container_name + + def show_keys(self): + """Show specific key""" + try: + resource_group_name, name, revision_name, key_type, key_name, function_name, replica_name, container_name = self.validate_show_arguments() + + return self.client.show_function_keys( + cmd=self.cmd, + resource_group_name=resource_group_name, + name=name, + key_type=key_type, + key_name=key_name, + function_name=function_name, + revision_name=revision_name, + replica_name=replica_name, + container_name=container_name + ) + except Exception as e: + handle_raw_exception(e) + + +class ContainerAppFunctionKeysListDecorator(ContainerAppFunctionKeysDecorator): + """Decorator for listing function keys""" + + def validate_list_arguments(self): + """Validate arguments required for listing function keys""" + resource_group_name, name, revision_name, key_type, replica_name, container_name = self.validate_common_arguments() + function_name = self.validate_function_name_requirement(key_type) + + return resource_group_name, name, revision_name, key_type, function_name, replica_name, container_name + + def list_keys(self): + """List keys based on key type""" + try: + resource_group_name, name, revision_name, key_type, function_name, replica_name, container_name = self.validate_list_arguments() + + return self.client.list_function_keys( + cmd=self.cmd, + resource_group_name=resource_group_name, + name=name, + key_type=key_type, + function_name=function_name, + revision_name=revision_name, + replica_name=replica_name, + container_name=container_name + ) + except Exception as e: + handle_raw_exception(e) + + +class ContainerAppFunctionKeysSetDecorator(ContainerAppFunctionKeysDecorator): + """Decorator for creating/updating function keys""" + + def validate_set_arguments(self): + """Validate arguments required for setting/updating function keys""" + resource_group_name, name, revision_name, key_type, replica_name, container_name = self.validate_common_arguments() + key_name = self.get_argument_key_name() + key_value = self.get_argument_key_value() + function_name = self.validate_function_name_requirement(key_type) + + if not key_name: + raise ValidationError("Key name is required.") + + return resource_group_name, name, revision_name, key_type, key_name, key_value, function_name, replica_name, container_name + + def set_keys(self): + """Create/Update keys based on key type""" + try: + resource_group_name, name, revision_name, key_type, key_name, key_value, function_name, replica_name, container_name = self.validate_set_arguments() + + return self.client.set_function_keys( + cmd=self.cmd, + resource_group_name=resource_group_name, + name=name, + key_type=key_type, + key_name=key_name, + key_value=key_value, + function_name=function_name, + revision_name=revision_name, + replica_name=replica_name, + container_name=container_name + ) + except Exception as e: + handle_raw_exception(e) diff --git a/src/containerapp/azext_containerapp/containerapp_functions_decorator.py b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py new file mode 100644 index 00000000000..18af01e8d24 --- /dev/null +++ b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py @@ -0,0 +1,236 @@ +# coding=utf-8 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long, broad-except, logging-format-interpolation, too-many-public-methods, too-many-boolean-expressions, logging-fstring-interpolation + +from knack.log import get_logger + +from azure.cli.core.azclierror import ValidationError +from azure.cli.command_modules.containerapp.base_resource import BaseResource + +from ._client_factory import handle_raw_exception +from ._validators import validate_basic_arguments, validate_revision_and_get_name, validate_functionapp_kind +from ._transformers import process_app_insights_response + +logger = get_logger(__name__) + + +class ContainerAppFunctionsDecorator(BaseResource): + """Base decorator for Container App Functions operations""" + + def get_argument_resource_group_name(self): + return self.get_param('resource_group_name') + + def get_argument_container_app_name(self): + return self.get_param('container_app_name') + + def get_argument_revision_name(self): + return self.get_param("revision_name") + + def get_argument_function_name(self): + return self.get_param('function_name') + + def get_argument_timespan(self): + return self.get_param('timespan') + + def get_argument_limit(self): + return self.get_param('limit') + + def set_argument_resource_group_name(self, resource_group_name): + self.set_param("resource_group_name", resource_group_name) + + def set_argument_container_app_name(self, container_app_name): + self.set_param("container_app_name", container_app_name) + + def set_argument_revision_name(self, revision_name): + self.set_param("revision_name", revision_name) + + def set_argument_function_name(self, function_name): + self.set_param("function_name", function_name) + + def set_argument_timespan(self, timespan): + self.set_param("timespan", timespan) + + def set_argument_limit(self, limit): + self.set_param("limit", limit) + + def validate_common_arguments(self): + """Validate common arguments required for all function operations""" + resource_group_name = self.get_argument_resource_group_name() + name = self.get_argument_container_app_name() + revision_name = self.get_argument_revision_name() + + # Validate basic arguments + validate_basic_arguments( + resource_group_name=resource_group_name, + container_app_name=name + ) + + # Validate revision and get the appropriate revision name + revision_name = validate_revision_and_get_name( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name, + provided_revision_name=revision_name + ) + + return resource_group_name, name, revision_name + + def validate_function_name_requirement(self): + """Validate function name is provided when required""" + function_name = self.get_argument_function_name() + + if not function_name: + raise ValidationError("Function name is required.") + + return function_name + + +class ContainerAppFunctionsListDecorator(ContainerAppFunctionsDecorator): + """Decorator for listing functions""" + + def list(self): + """List functions for a container app or revision""" + try: + resource_group_name, name, revision_name = self.validate_common_arguments() + + # Validate that the Container App has kind 'functionapp' + validate_functionapp_kind( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name + ) + + if revision_name and revision_name is not None: + # List functions for a specific revision + return self.client.list_functions_by_revision( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name, + revision_name=revision_name + ) + # List functions for latest active revision + return self.client.list_functions( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name + ) + except Exception as e: + handle_raw_exception(e) + + +class ContainerAppFunctionsShowDecorator(ContainerAppFunctionsDecorator): + """Decorator for showing a specific function""" + + def validate_show_arguments(self): + """Validate arguments required for showing a function""" + resource_group_name, name, revision_name = self.validate_common_arguments() + function_name = self.validate_function_name_requirement() + return resource_group_name, name, revision_name, function_name + + def show(self): + """Show details of a specific function""" + try: + resource_group_name, name, revision_name, function_name = self.validate_show_arguments() + + # Validate that the Container App has kind 'functionapp' + validate_functionapp_kind( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name + ) + + if revision_name and revision_name is not None: + # Get function for a specific revision + return self.client.get_function_by_revision( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name, + revision_name=revision_name, + function_name=function_name + ) + # Get function for the entire container app + return self.client.get_function( + cmd=self.cmd, + resource_group_name=resource_group_name, + container_app_name=name, + function_name=function_name + ) + except Exception as e: + handle_raw_exception(e) + + +class ContainerAppFunctionInvocationsDecorator(ContainerAppFunctionsDecorator): + """Decorator for showing function invocation""" + + def validate_arguments(self): + """Validate arguments required for function invocation operations""" + validate_basic_arguments( + resource_group_name=self.get_argument_resource_group_name(), + container_app_name=self.get_argument_container_app_name() + ) + + # Validate that the Container App has kind 'functionapp' + validate_functionapp_kind( + cmd=self.cmd, + resource_group_name=self.get_argument_resource_group_name(), + container_app_name=self.get_argument_container_app_name() + ) + + revision_name = self.get_argument_revision_name() + revision_name = validate_revision_and_get_name( + cmd=self.cmd, + resource_group_name=self.get_argument_resource_group_name(), + container_app_name=self.get_argument_container_app_name(), + provided_revision_name=revision_name + ) + # Update the revision name with the validated value + self.set_argument_revision_name(revision_name) + self.validate_function_name_requirement() + + def get_summary(self): + """Get function invocation summary using the client""" + try: + self.validate_arguments() + + response = self.client.get_function_invocation_summary( + cmd=self.cmd, + resource_group_name=self.get_argument_resource_group_name(), + container_app_name=self.get_argument_container_app_name(), + revision_name=self.get_argument_revision_name(), + function_name=self.get_argument_function_name(), + timespan=self.get_argument_timespan() or "30d" + ) + + return process_app_insights_response(response) + except Exception as e: + handle_raw_exception(e) + + def get_traces(self): + """Get function invocation traces using the client""" + try: + self.validate_arguments() + + # Get all arguments + resource_group = self.get_argument_resource_group_name() + container_app = self.get_argument_container_app_name() + revision = self.get_argument_revision_name() + function = self.get_argument_function_name() + timespan = self.get_argument_timespan() + limit = self.get_argument_limit() + + response = self.client.get_function_invocation_traces( + cmd=self.cmd, + resource_group_name=resource_group, + container_app_name=container_app, + revision_name=revision, + function_name=function, + timespan=timespan, + limit=limit + ) + + return process_app_insights_response(response) + except Exception as e: + handle_raw_exception(e) diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml new file mode 100644 index 00000000000..9c35f36b9e6 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml @@ -0,0 +1,7578 @@ +interactions: +- request: + body: '{"location": "northcentralus", "kind": "web", "properties": {"Application_Type": + "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "IngestionMode": + "ApplicationInsights"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - monitor app-insights component create + Connection: + - keep-alive + Content-Length: + - '180' + Content-Type: + - application/json + ParameterSetName: + - -a --location -g --application-type + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2018-05-01-preview + response: + body: + string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"29031918-0000-0400-0000-68ee30f90000\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/appinsights000003\",\r\n + \ \"name\": \"appinsights000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n + \ \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n + \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n + \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"dcbd9bb7-2b2d-4849-a6a2-f750218da66a\",\r\n + \ \"ConnectionString\": \"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n + \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-10-14T11:16:02.4204865+00:00\",\r\n + \ \"TenantId\": \"cabb33e6-3c92-4907-9d7c-80c7ca9ac327\",\r\n \"provisioningState\": + \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": + 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_a3e40e40-d57f-4509-853f-43669d7aedab_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n + \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": + \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": + \"v2\"\r\n }\r\n}" + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1566' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:16:08 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8c34d11b-cc1f-4a64-8fda-52b17930bb0f + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0B2CDD0FBD3C4E63A55327624B49D3D9 Ref B: JKT201051407052 Ref C: 2025-10-14T11:16:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - monitor app-insights component show + Connection: + - keep-alive + ParameterSetName: + - -a -g --query -o + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2020-02-02-preview + response: + body: + string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"29031918-0000-0400-0000-68ee30f90000\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/appinsights000003\",\r\n + \ \"name\": \"appinsights000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n + \ \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": + {\r\n \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n + \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n + \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"dcbd9bb7-2b2d-4849-a6a2-f750218da66a\",\r\n + \ \"ConnectionString\": \"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n + \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-10-14T11:16:02.4204865+00:00\",\r\n + \ \"TenantId\": \"cabb33e6-3c92-4907-9d7c-80c7ca9ac327\",\r\n \"provisioningState\": + \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": + 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_a3e40e40-d57f-4509-853f-43669d7aedab_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n + \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": + \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": + \"v2\"\r\n }\r\n}" + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1566' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:16:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A673584573EF4D96AF6ECD914E2A38DC Ref B: JKT201051407029 Ref C: 2025-10-14T11:16:30Z' + 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.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:16:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 16EF6A18984749A593E72741E5122AC7 Ref B: JKT201051406040 Ref C: 2025-10-14T11:16:34Z' + 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.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1810' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:16:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F138C59943B145BDA4111BA14C85EC1A Ref B: JKT201051407031 Ref C: 2025-10-14T11:16:36Z' + 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 + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8F2CFA6CD28748EEAEC04A03C9151736 Ref B: JKT201051406025 Ref C: 2025-10-14T11:18:18Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1810' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8DF2AC4CA99447CB9753CFD55B88E94D Ref B: JKT201051407025 Ref C: 2025-10-14T11:18:20Z' + 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 + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 842A2E0421FB4312AD3EE8E5ACE78E22 Ref B: JKT201051406042 Ref C: 2025-10-14T11:18:22Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "Central US EUAP", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage", + "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": null, "targetLabel": + null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name": "containerapp000004", + "command": null, "args": null, "env": null, "resources": null, "volumeMounts": + null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": + null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '990' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + cache-control: + - no-cache + content-length: + - '1969' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/81358b8f-bf82-4a72-b67b-9e754bd04316 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: CDB8DBD4BB5D4197911CF5F03F9AD5CC Ref B: JKT201051406040 Ref C: 2025-10-14T11:18:24Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ec139c25-c071-4885-bc8c-11b86d4310b1 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6AEF3A65D3184829A526327AD24B3D00 Ref B: JKT201051406025 Ref C: 2025-10-14T11:18:27Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/acb260bc-f667-40b0-b491-11d2572e852b + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6C75DDB202ED413E9520F22C336704CE Ref B: JKT201051407036 Ref C: 2025-10-14T11:18:30Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9c36648f-6664-4bc7-9b7e-1f997d5dcd74 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 646C73B296324B37AF83A779A6B7BA66 Ref B: JKT201051407042 Ref C: 2025-10-14T11:18:33Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/bcf4b48f-0ae1-4ddd-8872-21e65584e131 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3D3C68A7020B423AA9978BD2DF687622 Ref B: JKT201051407042 Ref C: 2025-10-14T11:18:37Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"Succeeded","startTime":"2025-10-14T11:18:26.4708733"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b61d6d4a-2830-4fac-abac-752e861c2ad4 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 62857A0856AC4575B8D81E620C12432F Ref B: JKT201051406040 Ref C: 2025-10-14T11:18:40Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"containerapp000004--41fyopd","latestReadyRevisionName":"containerapp000004--41fyopd","latestRevisionFqdn":"containerapp000004--41fyopd.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2656' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9308FA6CB18545028504825FB023776F Ref B: JKT201051407054 Ref C: 2025-10-14T11:18:41Z' + 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 --kind --env-vars + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4CDBB4C1266F45CAB16C225CF0E127FD Ref B: JKT201051406040 Ref C: 2025-10-14T11:18:43Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1810' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F653ED2F94DE436CAF4DA81F97EFD610 Ref B: JKT201051407034 Ref C: 2025-10-14T11:18:44Z' + 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 --kind --env-vars + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F32A00D151DE48829F141F9F744BF64D Ref B: JKT201051407034 Ref C: 2025-10-14T11:18:45Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "Central US EUAP", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage", + "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": null, "targetLabel": + null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0", "name": "functionapp000002", + "command": null, "args": null, "env": [{"name": "APPLICATIONINSIGHTS_CONNECTION_STRING", + "value": "InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}], + "resources": null, "volumeMounts": null}], "initContainers": null, "scale": + null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, + "tags": null, "kind": "functionapp"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1328' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + cache-control: + - no-cache + content-length: + - '2311' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/57fbf9bb-3f57-4db0-b571-db788abd33b6 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 758036216C374AB69D2A948DE3FD697A Ref B: JKT201051407036 Ref C: 2025-10-14T11:18:48Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/99c65959-e622-4bfa-b2e5-867d61d27e48 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DEBF103107444CB68D0153EA7D6C0732 Ref B: JKT201051407029 Ref C: 2025-10-14T11:18:50Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3372cee0-7e9c-49ec-bba9-0fd376941c06 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4C96F043179A4C9BB3E2061640BA6EDA Ref B: JKT201051406029 Ref C: 2025-10-14T11:18:53Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:18:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0db5813a-d4c4-4f99-bcf0-870a60bda20d + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 14E0B3F6B34C4285A7EB39DF27AE28AA Ref B: JKT201051406025 Ref C: 2025-10-14T11:18:57Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8daf93d3-f270-45a5-8e01-170cdcf4c00a + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C0A7B3E552AA4832BDFAEAA544706CD0 Ref B: JKT201051406023 Ref C: 2025-10-14T11:19:00Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"Succeeded","startTime":"2025-10-14T11:18:49.5730122"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3eea599d-ff4a-4a61-98ce-9ae75f6d1d5f + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 62217C44698D4E9FAA959FC8A679BC95 Ref B: JKT201051407052 Ref C: 2025-10-14T11:19:03Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 7D6B7D664816481E81FFB85409259DB7 Ref B: JKT201051406023 Ref C: 2025-10-14T11:19:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating","runningStateDetails":"The + TargetPort 80 does not match the listening port 39485."}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1365' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/166a668a-609e-41c5-a8c1-08f5421919e3 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 031A48CFEB114B4691D4ABF5B7F6E4CD Ref B: JKT201051406060 Ref C: 2025-10-14T11:19:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1354' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/67d01f58-4c2e-4f0f-bad9-6fcd7181dd17 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 639AB13625AC490A93AF264B80BD9E8F Ref B: JKT201051406054 Ref C: 2025-10-14T11:19:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp replica list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 211C09A78C6E4321A3E79412F4FE3789 Ref B: JKT201051407052 Ref C: 2025-10-14T11:19:21Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp replica list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas?api-version=2025-02-02-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn","name":"functionapp000002--gto25e2-585fbf94b-xdsrn","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T11:18:56Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000002","containerId":"containerd://a9c3d21b86163dcbc2d203b6fc6f8b30ef09524eecae649c4ead61460daf34a0","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 11:19:04 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/functionapp000002/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/functionapp000002/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/debug?targetContainer=functionapp000002"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://5c93e14b21ab5f061e6cea5f97365bef37b4d9df27cf54674158ab33c4cc3526","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/debug?targetContainer=metadata-check"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2854' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ddfe64f3-92e8-4b71-a33f-de29c8bbc3e7 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: FD6BFE40A8BF4B29A2E885A6CEAECCED Ref B: JKT201051406054 Ref C: 2025-10-14T11:19:22Z' + 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: + - --resource-group --name --query --output + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2A503890157C45ABB88D2EC7133BE839 Ref B: JKT201051407060 Ref C: 2025-10-14T11:19:24Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --query --output + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 40D17C1BF9354C79B42D40708B067800 Ref B: JKT201051406036 Ref C: 2025-10-14T11:19:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:27 GMT + request-context: + - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + server: + - Kestrel + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:28 GMT + request-context: + - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + server: + - Kestrel + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:29 GMT + request-context: + - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + server: + - Kestrel + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:30 GMT + request-context: + - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + server: + - Kestrel + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:31 GMT + request-context: + - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + server: + - Kestrel + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:32 GMT + request-context: + - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + server: + - Kestrel + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.32.4 + method: POST + uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:19:33 GMT + request-context: + - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + server: + - Kestrel + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0FBAD32EA14E4598978192620504FC90 Ref B: JKT201051407062 Ref C: 2025-10-14T11:20:35Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 53CCC77A03F4452C8AA025B23F8E8014 Ref B: JKT201051406040 Ref C: 2025-10-14T11:20:37Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 634BB0AD8F454624A80E646B4C338712 Ref B: JKT201051407042 Ref C: 2025-10-14T11:20:38Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1371' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/100f3ad6-e1c7-4c10-910c-a5734e1b7811 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1BC510107ADE4E6987836C53F64FA39F Ref B: JKT201051407029 Ref C: 2025-10-14T11:20:39Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) + | where timestamp >= ago(30d) | where cloud_RoleName =~ ''functionapp000002'' + | where cloud_RoleInstance contains ''functionapp000002--gto25e2'' | where operation_Name + =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | summarize + SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success + == false), 0)", "timespan": "P30D"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + Content-Length: + - '475' + Content-Type: + - application/json + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getLast30DaySummary + response: + body: + string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"SuccessCount","type":"long"},{"name":"ErrorCount","type":"long"}],"rows":[[0,0]]}]}' + headers: + access-control-allow-origin: + - '*' + access-control-expose-headers: + - Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location,x-ms-request-id + connection: + - keep-alive + content-length: + - '138' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:49 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-54d7c4f669-75w9d + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 027C8B2DA37F4037A24264DA84C74F8E Ref B: JKT201051407042 Ref C: 2025-10-14T11:20:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3C941D435076472AB67B3A4EC370CFD8 Ref B: JKT201051406052 Ref C: 2025-10-14T11:20:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C2B05D3BAE9D4F2389B0E5FE7C263DB4 Ref B: JKT201051406052 Ref C: 2025-10-14T11:20:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1371' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/05c06aa5-46be-4588-a1d3-63d655c3f537 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4E89688391674B85A32E95255F06515E Ref B: JKT201051407060 Ref C: 2025-10-14T11:20:53Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) + | where timestamp >= ago(5h) | where cloud_RoleName =~ ''functionapp000002'' + | where cloud_RoleInstance contains ''functionapp000002--gto25e2'' | where operation_Name + =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | summarize + SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success + == false), 0)", "timespan": "P30D"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + Content-Length: + - '474' + Content-Type: + - application/json + ParameterSetName: + - -n -g --function-name --timespan + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getLast30DaySummary + response: + body: + string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"SuccessCount","type":"long"},{"name":"ErrorCount","type":"long"}],"rows":[[0,0]]}]}' + headers: + access-control-allow-origin: + - '*' + access-control-expose-headers: + - Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location,x-ms-request-id + connection: + - keep-alive + content-length: + - '138' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:58 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-54d7c4f669-vzlkw + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:20:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A8319AB6E3C041FBBF0E01A426D8286B Ref B: JKT201051407034 Ref C: 2025-10-14T11:20:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"containerapp000004--41fyopd","latestReadyRevisionName":"containerapp000004--41fyopd","latestRevisionFqdn":"containerapp000004--41fyopd.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2656' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 727B9A3EDAEA42F58C3A4E2993EABFD1 Ref B: JKT201051406034 Ref C: 2025-10-14T11:21:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8F2F0DD46E9343429AB25D8D6348259A Ref B: JKT201051406034 Ref C: 2025-10-14T11:21:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/non-existent-app'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '232' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 8D2DDA9337284437944591DA79E69F94 Ref B: JKT201051406031 Ref C: 2025-10-14T11:21:04Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 46F3D597111D4E588057F537796006FA Ref B: JKT201051407031 Ref C: 2025-10-14T11:21:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 137046CF9EDB47D494CF3F9A5D3270D0 Ref B: JKT201051407031 Ref C: 2025-10-14T11:21:07Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DD7D2E9D46794C169933B9A80B3EE055 Ref B: JKT201051406052 Ref C: 2025-10-14T11:21:09Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1371' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/989d61d6-7f5d-4c82-8768-2fc6904e0448 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3D0B8FD5D0D948F4AD60351520ED4F53 Ref B: JKT201051406042 Ref C: 2025-10-14T11:21:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) + | project timestamp, id, operation_Name, success, resultCode, duration, operation_Id, + functionNameFromCustomDimension, cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions[''InvocationId'']), + tostring(customDimensions[''faas.invocation_id''])) | where timestamp > ago(30d) + | where cloud_RoleName =~ ''functionapp000002'' | where cloud_RoleInstance contains + ''functionapp000002--gto25e2'' | where operation_Name =~ ''HttpExample'' or + functionNameFromCustomDimension =~ ''HttpExample'' | order by timestamp desc + | take 20 | project timestamp, success, resultCode, durationInMilliSeconds=duration, + invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension + ", "timespan": "P30D"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + Content-Length: + - '841' + Content-Type: + - application/json + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getInvocationTraces + response: + body: + string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"timestamp","type":"datetime"},{"name":"success","type":"string"},{"name":"resultCode","type":"string"},{"name":"durationInMilliSeconds","type":"real"},{"name":"invocationId","type":"string"},{"name":"operationId","type":"string"},{"name":"operationName","type":"string"},{"name":"functionNameFromCustomDimension","type":"string"}],"rows":[]}]}' + headers: + access-control-allow-origin: + - '*' + access-control-expose-headers: + - Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location,x-ms-request-id + connection: + - keep-alive + content-length: + - '398' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:15 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-54d7c4f669-h9n4k + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan --limit + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F812BE9F3AF74EC8805057CA94D024AD Ref B: JKT201051406042 Ref C: 2025-10-14T11:21:16Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan --limit + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 843A5F1A7BC94240BD6E59EDE6C0460A Ref B: JKT201051407023 Ref C: 2025-10-14T11:21:18Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan --limit + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2993' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 34595A16797B4FAE8C5D06390178898E Ref B: JKT201051406052 Ref C: 2025-10-14T11:21:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan --limit + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1371' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/68338fa5-c792-4d3a-8ede-47362eb52896 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B56BFC76C282453791E97E5D16B651E7 Ref B: JKT201051407036 Ref C: 2025-10-14T11:21:20Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) + | project timestamp, id, operation_Name, success, resultCode, duration, operation_Id, + functionNameFromCustomDimension, cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions[''InvocationId'']), + tostring(customDimensions[''faas.invocation_id''])) | where timestamp > ago(5h) + | where cloud_RoleName =~ ''functionapp000002'' | where cloud_RoleInstance contains + ''functionapp000002--gto25e2'' | where operation_Name =~ ''HttpExample'' or + functionNameFromCustomDimension =~ ''HttpExample'' | order by timestamp desc + | take 3 | project timestamp, success, resultCode, durationInMilliSeconds=duration, + invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension + ", "timespan": "P30D"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + Content-Length: + - '839' + Content-Type: + - application/json + ParameterSetName: + - -n -g --function-name --timespan --limit + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getInvocationTraces + response: + body: + string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"timestamp","type":"datetime"},{"name":"success","type":"string"},{"name":"resultCode","type":"string"},{"name":"durationInMilliSeconds","type":"real"},{"name":"invocationId","type":"string"},{"name":"operationId","type":"string"},{"name":"operationName","type":"string"},{"name":"functionNameFromCustomDimension","type":"string"}],"rows":[]}]}' + headers: + access-control-allow-origin: + - '*' + access-control-expose-headers: + - Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location,x-ms-request-id + connection: + - keep-alive + content-length: + - '398' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:25 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-54d7c4f669-w64tl + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D92FD4CCD2BB4713B7B017B8E89723F2 Ref B: JKT201051406025 Ref C: 2025-10-14T11:21:26Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"containerapp000004--41fyopd","latestReadyRevisionName":"containerapp000004--41fyopd","latestRevisionFqdn":"containerapp000004--41fyopd.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2656' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C68F957864894A9F9B2AD5F55BADE0BF Ref B: JKT201051406029 Ref C: 2025-10-14T11:21:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B62613BD4ACC4A8DB90F127BB8A44282 Ref B: JKT201051407052 Ref C: 2025-10-14T11:21:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/non-existent-app'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '232' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 11:21:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 9DB903A0F66942C094BC84D579A9E3A6 Ref B: JKT201051407025 Ref C: 2025-10-14T11:21:32Z' + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml new file mode 100644 index 00000000000..2b086920fb1 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml @@ -0,0 +1,7588 @@ +interactions: +- request: + body: '{"name": "storageacc000002", "type": "Microsoft.Storage/storageAccounts"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json + ParameterSetName: + - -n -g --location --sku + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2025-01-01 + response: + body: + string: '{"nameAvailable":true}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Tue, 14 Oct 2025 08:19:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/4de40c12-297f-4072-96fa-625347d012eb + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: BC12D8248B014DAAAC0C9C6F516F0C63 Ref B: JKT201051407040 Ref C: 2025-10-14T08:19:17Z' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "StorageV2", "location": "northcentralus", + "properties": {"encryption": {"services": {"blob": {}}, "keySource": "Microsoft.Storage"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + Content-Length: + - '176' + Content-Type: + - application/json + ParameterSetName: + - -n -g --location --sku + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002?api-version=2025-01-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:19:22 GMT + expires: + - '-1' + location: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267629384227&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=kSqc4KzHLlS1ftIg_geApPiBB3ybrA5XQvW8G77_Y-kfLX0tLqn_TFKQrwmMaSR18ypwsEpxknwullTeQg9gKqsJ8wzmCj-foK-m5WJUV-sLvblg1ONBTMxQ4iAajvpEJESFFkfsM1a9MmLpC88TErwwE_8mV9ZyoErR9jW38PN8yunJ7LjQy7a_33RfRbAqXIf7o9dZfLjEk_nDHo59NMFHShJs61QaQbXsQu-ndvJclbtRqty4rHvHDT-38QByEy_VcBZRBuhwFMesb77r7ncoEgBasOItsoTcbNk-GBwxCU6gzbjgDjAnnEICYop6E7sDsNU1Bm3cjq8E1Qd68A&h=NF7zouk3BkH0zVsRrm7YtH7yHW-vSsWyGVZeZdzRhkw + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6eb84536-f30a-4130-8c58-0d0ecce2798b + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1F96578BDD6345EF82454782B159905D Ref B: JKT201051407054 Ref C: 2025-10-14T08:19:19Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --location --sku + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267629384227&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=kSqc4KzHLlS1ftIg_geApPiBB3ybrA5XQvW8G77_Y-kfLX0tLqn_TFKQrwmMaSR18ypwsEpxknwullTeQg9gKqsJ8wzmCj-foK-m5WJUV-sLvblg1ONBTMxQ4iAajvpEJESFFkfsM1a9MmLpC88TErwwE_8mV9ZyoErR9jW38PN8yunJ7LjQy7a_33RfRbAqXIf7o9dZfLjEk_nDHo59NMFHShJs61QaQbXsQu-ndvJclbtRqty4rHvHDT-38QByEy_VcBZRBuhwFMesb77r7ncoEgBasOItsoTcbNk-GBwxCU6gzbjgDjAnnEICYop6E7sDsNU1Bm3cjq8E1Qd68A&h=NF7zouk3BkH0zVsRrm7YtH7yHW-vSsWyGVZeZdzRhkw + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:19:25 GMT + expires: + - '-1' + location: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267650420224&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hykvwtRgNZkg-Zj4HfL81cyyWDFYWbRNKpMXlpHLKUu3J1EWHUUc25sMxicEbiBa1sJDC86PMIPA8XfDhVF6bam0YnSTYGN_FiGcwchpo6MlZe1g-N-WTnmCUBmUcPeBRKv3gpR_SFdeQ4Ic_dalfcLge--UiYLz_11El5Swuq_7Pz3Mnr-HZVvzCB1m6q8vqZ6cNlgG96UaKsBNBHrWe75ZfFuzCUrtiQcsmz-d9XB4iSMpF98FWQ4hvk7-iYUS_M0XyulG96LtyO6vZQ7bqzW6r57MnJnWNLBLVsojSF5Jxd9HqsU7ZM3CqL6Yl6GI9EJckx0zzT4Y-AMnzXn_ZA&h=91WDMU8snD_XYH1qW3cLRrjXxcudp0jPegOpeCfxMBU + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0c702a60-c014-4fdd-93c4-f45f4710abc5 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F2F08AD9BAB04F5C9CA14F5040E42A6B Ref B: JKT201051406036 Ref C: 2025-10-14T08:19:23Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --location --sku + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267650420224&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hykvwtRgNZkg-Zj4HfL81cyyWDFYWbRNKpMXlpHLKUu3J1EWHUUc25sMxicEbiBa1sJDC86PMIPA8XfDhVF6bam0YnSTYGN_FiGcwchpo6MlZe1g-N-WTnmCUBmUcPeBRKv3gpR_SFdeQ4Ic_dalfcLge--UiYLz_11El5Swuq_7Pz3Mnr-HZVvzCB1m6q8vqZ6cNlgG96UaKsBNBHrWe75ZfFuzCUrtiQcsmz-d9XB4iSMpF98FWQ4hvk7-iYUS_M0XyulG96LtyO6vZQ7bqzW6r57MnJnWNLBLVsojSF5Jxd9HqsU7ZM3CqL6Yl6GI9EJckx0zzT4Y-AMnzXn_ZA&h=91WDMU8snD_XYH1qW3cLRrjXxcudp0jPegOpeCfxMBU + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-10-14T08:19:20.9368654Z","key2":"2025-10-14T08:19:20.9368654Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-10-14T08:19:20.8587937Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z14.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1490' + content-type: + - application/json + date: + - Tue, 14 Oct 2025 08:19:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9f1baf97-1554-47c2-9b25-a99d2fbbc901 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 08C44D68C8904FD896BD17C828CB8B93 Ref B: JKT201051406052 Ref C: 2025-10-14T08:19:42Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account show-connection-string + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --query -o + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002/listKeys?api-version=2025-01-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2025-10-14T08:19:20.9368654Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-10-14T08:19:20.9368654Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Tue, 14 Oct 2025 08:20:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d809f0d1-c43f-4e28-a7dd-214b5f6d1176 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 3766565827CC4E9B8FD33929EF07D423 Ref B: JKT201051406031 Ref C: 2025-10-14T08:20:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account show-connection-string + Connection: + - keep-alive + ParameterSetName: + - -n -g --query -o + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002?api-version=2025-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-10-14T08:19:20.9368654Z","key2":"2025-10-14T08:19:20.9368654Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-10-14T08:19:20.8587937Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z14.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1490' + content-type: + - application/json + date: + - Tue, 14 Oct 2025 08:20:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D33CC713161948D99FC1E4D6BE181C41 Ref B: JKT201051406023 Ref C: 2025-10-14T08:20:06Z' + 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.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:20:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B32CA6247FC946FABCAFBF2273A7C00B Ref B: JKT201051406054 Ref C: 2025-10-14T08:20:09Z' + 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.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1810' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:20:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1C3180F0117F495EA268CE0E901BB158 Ref B: JKT201051406052 Ref C: 2025-10-14T08:20:10Z' + 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 --kind --env-vars + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:21:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F7739AEC2EF24D35AD156ABC559128BC Ref B: JKT201051406052 Ref C: 2025-10-14T08:21:52Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1810' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:21:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: AD9F2A6289FA46AFAF82946FE3CAD798 Ref B: JKT201051407054 Ref C: 2025-10-14T08:21:53Z' + 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 --kind --env-vars + User-Agent: + - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:21:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2847EDC0C7024FD0BA738723AAEE90C0 Ref B: JKT201051407042 Ref C: 2025-10-14T08:21:54Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "Central US EUAP", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage", + "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": null, "targetLabel": + null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0", "name": "functionapp000003", + "command": null, "args": null, "env": [{"name": "AzureWebJobsStorage", "value": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}], + "resources": null, "volumeMounts": null}], "initContainers": null, "scale": + null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, + "tags": null, "kind": "functionapp"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1435' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + cache-control: + - no-cache + content-length: + - '2418' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:21:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8b21c6e1-37a7-45ab-9cd9-8c1a732cbc6f + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 0D73B5B278DB4E3C9CD2037D994D9E6D Ref B: JKT201051406042 Ref C: 2025-10-14T08:21:56Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6cd2766b-8475-4ba1-b8e5-d2d7122b113a + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5067E153C519417FBF9E71C72D306D9C Ref B: JKT201051406040 Ref C: 2025-10-14T08:21:59Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/93243753-2b76-4bb9-b090-09980dc81db5 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: BF12D44EDDBA4AA1B794CF237D837BF9 Ref B: JKT201051406052 Ref C: 2025-10-14T08:22:03Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d25dd5d1-f89a-4e61-9edb-4a62673ac8e8 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9C5F5C0E699D4522A568501B0F30151C Ref B: JKT201051406060 Ref C: 2025-10-14T08:22:05Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '285' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/79016214-9d09-428a-aa8b-100db5b8614f + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 34AF4C2BC36646EE87168A443D9DB13B Ref B: JKT201051406052 Ref C: 2025-10-14T08:22:09Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"Succeeded","startTime":"2025-10-14T08:21:58.8119599"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/36c7254c-6d9b-4f22-9104-67230e855a2d + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5C49CED7DA8B4522BC7ADE04CFAA7F5E Ref B: JKT201051406040 Ref C: 2025-10-14T08:22:12Z' + 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 --kind --env-vars + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F412AE4EB99B4F8EB0F5C27061AFEF08 Ref B: JKT201051406060 Ref C: 2025-10-14T08:22:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am","name":"functionapp000003--b8487am","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T08:22:06+00:00","fqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating","runningStateDetails":"The + TargetPort 80 does not match the listening port 38665."}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1472' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3100f0bd-f60f-4e4c-901e-e029bbab6352 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8798EB5798614F84A9FBB58DC79FE752 Ref B: JKT201051406054 Ref C: 2025-10-14T08:22:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am","name":"functionapp000003--b8487am","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T08:22:06+00:00","fqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1461' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a040c25c-73b9-45c3-8237-3d8e32e041d2 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 21AF5A2C55404A848BC1EA78B5C35D5F Ref B: JKT201051406034 Ref C: 2025-10-14T08:22:28Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp replica list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: FE86B5BD653449F691DE78919A30E1F8 Ref B: JKT201051407040 Ref C: 2025-10-14T08:22:30Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp replica list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-02-02-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2861' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/78c2b0ae-df19-43e8-9e78-671451527059 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 291066A5BA9B40C69743B0438FA0D1B7 Ref B: JKT201051406029 Ref C: 2025-10-14T08:22:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 641660ACB4744DA0BA579F4A53A70CF0 Ref B: JKT201051407062 Ref C: 2025-10-14T08:22:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D0F7E7F6FB584D498761DCC54DE90167 Ref B: JKT201051407025 Ref C: 2025-10-14T08:22:37Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c2964fca-ac93-4d3d-ba6d-5c7d12b644b6 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9A872AFA155B48D9BA709571D19CB28A Ref B: JKT201051406023 Ref C: 2025-10-14T08:22:38Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b63a8bbe-9b65-421b-affd-0aefa745b3af + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: BD1BB1AADC254BC39BBD9E6F4F3BDDA1 Ref B: JKT201051407042 Ref C: 2025-10-14T08:22:40Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:22:42.0838393Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0dec5a36-4af4-45f0-bfbb-4f4a0feb4bfa + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6539175863794F59960B6E34AFB5C5B7 Ref B: JKT201051406029 Ref C: 2025-10-14T08:22:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+hostKey + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"default\",\n\"value\": + \"***\"\n}\n]\n}\n}"}' + headers: + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:45 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2B9E13F91C3A4E0099C4475B4C48E4C7 Ref B: JKT201051406060 Ref C: 2025-10-14T08:22:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F7DF83231CF9455093A2BE1068D5C6CE Ref B: JKT201051407036 Ref C: 2025-10-14T08:22:48Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6aeca71a-7a70-4d1c-aa18-068b0c25fd43 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: ED58A01B700C489E83A2432F68B40AA0 Ref B: JKT201051407040 Ref C: 2025-10-14T08:22:49Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6999abfd-ede1-49d4-b80e-e2dbb17acfeb + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 452DCD44F955425580F4E818BA830532 Ref B: JKT201051407052 Ref C: 2025-10-14T08:22:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:22:54.7423522Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:22:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9b98913e-ebf4-44d8-a81c-e54eb6bc665b + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 149A45BC43174B1699AD343862A8E966 Ref B: JKT201051407040 Ref C: 2025-10-14T08:22:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+masterKey + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"_master\",\n\"value\": + \"***\"\n}\n]\n}\n}"}' + headers: + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:00 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3B26A4795BF64912826410CE70116D15 Ref B: JKT201051407060 Ref C: 2025-10-14T08:23:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1DC4C2DEFF5C4BE8BB44BB274E3722E7 Ref B: JKT201051407052 Ref C: 2025-10-14T08:23:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3032ed9f-ab33-4702-8e6f-cd411b65991b + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9FACF7E6B36D4E388D3760665B22317C Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/938a1ff4-b767-428f-8d91-166aa9d834d9 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5296191D6C474C698175E008FE946EC1 Ref B: JKT201051406040 Ref C: 2025-10-14T08:23:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:07.1480433Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a173ab8f-02d9-421e-83d5-522f656549d0 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1A3AF8F5B1B54786BC3B3E0B32AEF261 Ref B: JKT201051406025 Ref C: 2025-10-14T08:23:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+systemKey + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": []\n}\n}"}' + headers: + content-length: + - '58' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:10 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 734668B507BD4040871EC77C980EE908 Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:12Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 7E42654E8A3445FAB69AEE7336012A60 Ref B: JKT201051406023 Ref C: 2025-10-14T08:23:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/87b9420c-fe40-4878-9f16-3590b314e084 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1269BA491DAB4C808BBC0EEED2F91FCD Ref B: JKT201051406060 Ref C: 2025-10-14T08:23:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a176e44a-073e-4a36-bc96-4943601768d6 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0D9B8F823C164A7EA3F4FDF0C0DCDC19 Ref B: JKT201051406025 Ref C: 2025-10-14T08:23:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:16.7670003Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cb49e673-bdf7-4c71-b283-56452aa3b149 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 84B383591BC248BD91919F38EE2F84B9 Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+functionKey+--function-name+HttpExample + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"default\",\n\"value\": + \"***\"\n}\n]\n}\n}"}' + headers: + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:20 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A93A920AADCF4616A2255B9D4C2B78E8 Ref B: JKT201051407052 Ref C: 2025-10-14T08:23:21Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 50F3B61236124E4DBC344410432401C7 Ref B: JKT201051406040 Ref C: 2025-10-14T08:23:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/1b638ee5-a8bb-48bd-8929-d67de4d34f85 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 093BC9C2F405458285B61EF76E2C7E96 Ref B: JKT201051407029 Ref C: 2025-10-14T08:23:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/89b817b6-c02d-4fa6-a720-57e295370270 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D65265F0F1B64AC1A9834829CE6BC366 Ref B: JKT201051407042 Ref C: 2025-10-14T08:23:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:26.4159871Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c7424d52-ea8d-48af-87f8-87e32a6ab33c + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 22642682675C4314BDAA2F5B89B0EB20 Ref B: JKT201051407062 Ref C: 2025-10-14T08:23:25Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+default + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"default\",\n\"value\": + \"***\"\n}\n}"}' + headers: + content-length: + - '141' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:31 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 22FD9EE9DA80421C9860891719C0121D Ref B: JKT201051407029 Ref C: 2025-10-14T08:23:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D469BB6132474A3B9017A9FC8BB889A4 Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cb80a213-1938-4b4b-9339-bcb85ff6f1c5 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 34226F18A06E47F1BF0D5FD5DE1007E0 Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a5f37cba-4606-42a6-892a-c9072246347f + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9E2AC16DACBE467EAE1451B8833AF8AC Ref B: JKT201051407040 Ref C: 2025-10-14T08:23:35Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:36.6356497Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d060b85a-a255-428d-b57c-1b0278f885dc + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E6AB3B5FF6364351868639865D8A8174 Ref B: JKT201051407052 Ref C: 2025-10-14T08:23:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+masterKey+--key-name+_master + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"_master\",\n\"value\": + \"***\"\n}\n}"}' + headers: + content-length: + - '141' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:40 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 280E9BFA4F23486A98BDD6662356EBAF Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6909E3CBF1244E0298AE1E9954AA6559 Ref B: JKT201051406034 Ref C: 2025-10-14T08:23:42Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ec563feb-a022-41bf-964c-272e5b512fcb + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 64CEA81C516C429C94127486E8B1F4F5 Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:43Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3e06c8e1-9fbc-4343-ae97-e90b42eec935 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 795B19DA921446C5A22CC897F1640C17 Ref B: JKT201051406034 Ref C: 2025-10-14T08:23:44Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:46.0573334Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d881ec1b-56bd-4072-b52b-857b76927464 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2C8B9BD55D3D43E9838BC92C8DD8611B Ref B: JKT201051407034 Ref C: 2025-10-14T08:23:45Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+default+--function-name+HttpExample + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"default\",\n\"value\": + \"***\"\n}\n}"}' + headers: + content-length: + - '141' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:49 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6C0C8F4DFBB5435FACFC5F11A295CA0A Ref B: JKT201051406034 Ref C: 2025-10-14T08:23:50Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6738A106F1BC4261B4938DEE3409D128 Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/916504f0-f8a8-4253-8317-de5fd2cd7336 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 58EEE2039E15445FA86EE1EFA56BFC35 Ref B: JKT201051406052 Ref C: 2025-10-14T08:23:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cea230d5-ccb6-410a-a1ba-2616c0fa3175 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EF1FF873C1C54008ACB80110796AF0D6 Ref B: JKT201051406042 Ref C: 2025-10-14T08:23:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:56.2004486Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3c93eb0c-6889-46d9-a959-48456d2c6f6d + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 71AF9BFD1D284EA08D9E6EF1A1DD0CB9 Ref B: JKT201051406042 Ref C: 2025-10-14T08:23:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+MyCustomKeyValue123456789 + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"MyCustomKeyValue123456789\"\n}\n}"}' + headers: + content-length: + - '114' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:23:59 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D129F56368794B8A88D1F5AA1A098986 Ref B: JKT201051406036 Ref C: 2025-10-14T08:24:01Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EC69C2A7AE6045388658EBDD56040B3A Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cb192d08-ae49-49d7-9f17-2ec4a2a6cdb5 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D40A38D6A68745A5AEDBDB9884316458 Ref B: JKT201051406034 Ref C: 2025-10-14T08:24:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/dcf06f57-d5d5-4cc6-a830-6ebba4b21de3 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 61682C7A10F0472EA180F5FFEAD00737 Ref B: JKT201051407060 Ref C: 2025-10-14T08:24:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:06.8249714Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/eabe36cd-976c-4ad9-84ad-3b8c86d0b598 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1F035E90624B4FE8AC0D93EF6692E2CF Ref B: JKT201051407034 Ref C: 2025-10-14T08:24:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"MyCustomKeyValue123456789\"\n}\n}"}' + headers: + content-length: + - '114' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:10 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8754F1DB6F374CA781A3816A691CF50E Ref B: JKT201051407060 Ref C: 2025-10-14T08:24:11Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5BC3ED4842F34BE197AAEDDC4C1917EF Ref B: JKT201051406031 Ref C: 2025-10-14T08:24:12Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/4cf66143-4984-43b0-85f7-916674fa454c + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: ED52D00B43DA418C8F68DF1B5FA5B4F0 Ref B: JKT201051406040 Ref C: 2025-10-14T08:24:13Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e0920748-4013-4e6d-93b2-32ddc28a7dba + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B547FD5BE4914F36809EBCAD9447CCA3 Ref B: JKT201051407023 Ref C: 2025-10-14T08:24:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:17.1950134Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e48ddb77-702b-41d5-9e2f-c7abbb32cfd8 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 11BBC8C448B443939135DF8655CB3AC7 Ref B: JKT201051407029 Ref C: 2025-10-14T08:24:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+hostKey+--key-name+mycustomkey+--key-value+MyHostKeyValue123456789 + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"MyHostKeyValue123456789\"\n}\n}"}' + headers: + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:20 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2D30495EC4724650B05C20B37C149E2A Ref B: JKT201051407052 Ref C: 2025-10-14T08:24:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F17842DB079D45DD8C19C23FC252DAB6 Ref B: JKT201051407054 Ref C: 2025-10-14T08:24:23Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d4e6f079-82e9-40e0-a054-4510481a0b53 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: AE474C7A35F943B5926D7BC5906CE748 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/da5520eb-5262-47ed-8fe0-d68e3edd5054 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 67F2E5D4421E459D923223AD6376C597 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:27.6961632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/1de738fc-99ec-4354-ba8c-4a762b2aa7b9 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 353FDEDD0AFC4AE0ABC1E200F2708D45 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:26Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+mycustomkey + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"MyHostKeyValue123456789\"\n}\n}"}' + headers: + content-length: + - '112' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:31 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: BB12AA54B18A4AE1AA10E38CC27C473A Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2280B7B1B37541C0A46172765EA51DEF Ref B: JKT201051407052 Ref C: 2025-10-14T08:24:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/65558184-38ed-4840-b48b-4d7a9a753b56 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F303416BC21948BBB7D2FB4D8F0320DF Ref B: JKT201051406031 Ref C: 2025-10-14T08:24:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/08999058-2958-4458-a479-56901d140ef4 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 69AD258D123B4B5889EA3450759AF995 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:36.2778769Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/843bb88c-2420-42ee-bc63-d2f5e43e3a0e + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 31F6830B03EA475687B3C76FAC11FA45 Ref B: JKT201051407052 Ref C: 2025-10-14T08:24:35Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+systemKey+--key-name+mycustomkey+--key-value+MySystemKeyValue123456789 + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"MySystemKeyValue123456789\"\n}\n}"}' + headers: + content-length: + - '114' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:40 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 97644662AB0844F08AB2E306E76F1365 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D41F4FF800E44E0E875F370C87FD8136 Ref B: JKT201051407040 Ref C: 2025-10-14T08:24:42Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0537b4b9-8ba0-472c-bca0-e5f9c57d8f86 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3469A7A5813D4FDAB9296251CD8AF647 Ref B: JKT201051407054 Ref C: 2025-10-14T08:24:43Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0b3d7593-e2d5-4d55-b3d1-6cdb43f30466 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C03BFEE34B3448A59BE5C0162DB55143 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:46Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:47.7212541Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/4493e944-2679-467e-a02f-f14c1aa05ea1 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 67C2A15298A1444F8DA29A6B517B94F1 Ref B: JKT201051407034 Ref C: 2025-10-14T08:24:47Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+systemKey+--key-name+mycustomkey + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"MySystemKeyValue123456789\"\n}\n}"}' + headers: + content-length: + - '114' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:50 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D8600132B7DF45CEB24317405D80AC1F Ref B: JKT201051407031 Ref C: 2025-10-14T08:24:52Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CF652306A9A748ADA2A95317D7F3B91F Ref B: JKT201051406036 Ref C: 2025-10-14T08:24:54Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3160c094-36cb-4a05-aac1-ac76d9529e95 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 96B6B5311DBF4D2EB93ABE4A64686D62 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9d00d13d-6e01-49da-aab3-a0d9df0276b9 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 66904EE772D147C890E9828FAC036F94 Ref B: JKT201051406034 Ref C: 2025-10-14T08:24:56Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:57.5877225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:24:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a8859fed-e7a1-4174-adb4-8d6cb4c896f6 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2B7BD1EDC298479DBEEEB1F5E8873973 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys set + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+UpdatedKeyValue987654321 + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"UpdatedKeyValue987654321\"\n}\n}"}' + headers: + content-length: + - '113' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:01 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EBCEE20672C8438F9D792E949E97FFCE Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D5F8C206D16E462B819F1D2AC747768B Ref B: JKT201051407054 Ref C: 2025-10-14T08:25:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c24ab0e7-e6b1-4537-a479-4d618e753732 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B627DB5070CB4B709F0CE3BE9160C524 Ref B: JKT201051407042 Ref C: 2025-10-14T08:25:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/80b77b78-f08c-41be-9ddd-cc2f024e881d + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3D0629C2E7C94A949F9116C5D006E942 Ref B: JKT201051407060 Ref C: 2025-10-14T08:25:05Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: POST + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + response: + body: + string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:25:06.9636181Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c22b6e53-7d3b-4946-be60-a3e7bc9036a5 + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E2F40FBB56E247B1B542366B964198C0 Ref B: JKT201051406060 Ref C: 2025-10-14T08:25:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": + \"UpdatedKeyValue987654321\"\n}\n}"}' + headers: + content-length: + - '113' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:11 GMT + server: + - Microsoft-IIS/10.0 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-rg/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''nonexistent-rg'' could not be found."}}' + headers: + cache-control: + - no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 383C0EA9F0084F119C235701C9F6CAC3 Ref B: JKT201051406060 Ref C: 2025-10-14T08:25:12Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '231' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: F08A7DCCD90041E1B5EF1707931EBF60 Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:13Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4CC3C85D44314D5397A13BC79F1CB02C Ref B: JKT201051407062 Ref C: 2025-10-14T08:25:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 28FC164227CF4DA9A1E8144599FAB124 Ref B: JKT201051406025 Ref C: 2025-10-14T08:25:16Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys list + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d64b2db6-cf11-4fa8-9c31-9adec72dcfd5 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 52C864E931624A1A927674E3F0F27CD2 Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:17Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6C242DA271C049B483878E0321B58E0F Ref B: JKT201051407031 Ref C: 2025-10-14T08:25:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central + US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3100' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 535997EB2C9C42008D5EA3A0137C6B24 Ref B: JKT201051406054 Ref C: 2025-10-14T08:25:20Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function keys show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.78.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2252' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Oct 2025 08:25:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6e7cae27-0af8-4d0f-a5c9-aae995db9892 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0AFC296E708145E59EA136F11F1B161A Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:22Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml new file mode 100644 index 00000000000..dd163e0dc91 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml @@ -0,0 +1,1959 @@ +interactions: +- 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.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:54:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1748513C80254EB6A281BFF6819DD39C Ref B: MAA201060515035 Ref C: 2025-10-09T13:54:51Z' + 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.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:54:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 34E06D7C93DC40A1A097F235D582F98A Ref B: MAA201060516037 Ref C: 2025-10-09T13:54:53Z' + 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 --kind + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:54:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1509775ABFF9447B886C51D0739BD660 Ref B: MAA201060515039 Ref C: 2025-10-09T13:54:55Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:54:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: AD6BB20E331647B5B9D9D9AF4193ACC3 Ref B: MAA201060514009 Ref C: 2025-10-09T13:54:57Z' + 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 --kind + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:54:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5119F3C8E8FC4F2B8E261306E12FB0DA Ref B: MAA201060514011 Ref C: 2025-10-09T13:54:58Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "North Central US (Stage)", "identity": null, "properties": + {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": null, "targetLabel": + null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0", "name": "containerapp000002", + "command": null, "args": null, "env": null, "resources": null, "volumeMounts": + null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": + null}, "workloadProfileName": null}, "tags": null, "kind": "functionapp"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1018' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + cache-control: + - no-cache + content-length: + - '2628' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/431c682c-19a1-44c5-bdfb-109d2e7c4b9d + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 62E0A872FB2748A9B82EC1550A988A7E Ref B: MAA201060515033 Ref C: 2025-10-09T13:55:01Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/7cb7f3a5-48ae-4285-9884-56d9046ed751 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2F259C77FD3D4FF79A527FC46D39AC2D Ref B: MAA201060516027 Ref C: 2025-10-09T13:55:03Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e7de68af-6456-410c-9aa9-3f525b477bfa + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0DD8330B529E4455B35E0B9B6342D302 Ref B: MAA201060515033 Ref C: 2025-10-09T13:55:07Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/33f14c09-7b15-4539-9709-61c5a52e566e + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6053AFA6736D47119BBA692E9EB1D7ED Ref B: MAA201060516047 Ref C: 2025-10-09T13:55:11Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/83ecd55d-4bae-42cb-94d0-29f519558111 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 59F412F9E8B9452CB6CFA838C6C62B87 Ref B: MAA201060516033 Ref C: 2025-10-09T13:55:14Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"Succeeded","startTime":"2025-10-09T13:55:02.9309005"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d8f22d6e-c8cf-4c08-a401-7354959ca5fc + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 75E01D63F5134BB18357B75A588435FC Ref B: MAA201060513047 Ref C: 2025-10-09T13:55:18Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3333' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A7A560907C6346EAB5A98AB950634B76 Ref B: MAA201060516031 Ref C: 2025-10-09T13:55:19Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn","name":"containerapp000002--4peg4mn","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T13:55:10+00:00","fqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1043' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:55:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3dba5a12-df62-4a1c-9ecf-1b8c80fb1641 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: A0EDFF46389446AAA0B0868AA3AF6EEC Ref B: MAA201060516051 Ref C: 2025-10-09T13:55:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3333' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:56:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3473E3F440164A719FED6BE4FEAAA61D Ref B: MAA201060515047 Ref C: 2025-10-09T13:56:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3333' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:56:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 11B709C9077541D3956FE709A35E87E6 Ref B: MAA201060514031 Ref C: 2025-10-09T13:56:25Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions?api-version=2025-10-02-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '539' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:56:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b4914be6-e678-4940-a2fe-08786c45c843 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F35193C9C1CE4F8B9F38A39156EF420C Ref B: MAA201060516027 Ref C: 2025-10-09T13:56:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3333' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:56:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 666C072858B54F2599D784A5135BEA78 Ref B: MAA201060516023 Ref C: 2025-10-09T13:56:30Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3333' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:56:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 68988787A7044B5B9A7344B987C9281F Ref B: MAA201060515011 Ref C: 2025-10-09T13:56:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions/HttpExample?api-version=2025-10-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '527' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 13:56:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ef016dde-1216-4ab5-8903-b6932a75fefe + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 044B424E5E3446CCADF93EF952475765 Ref B: MAA201060513045 Ref C: 2025-10-09T13:56:33Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml new file mode 100644 index 00000000000..cb8a877ee6b --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml @@ -0,0 +1,3488 @@ +interactions: +- 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.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C97998D3307C439394C055841C034C67 Ref B: MAA201060514021 Ref C: 2025-10-09T14:15:00Z' + 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.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D83567F207924A5AA66FF894E0E9F59E Ref B: MAA201060513009 Ref C: 2025-10-09T14:15:01Z' + 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 + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EAAC9E2FB06C46F0BFEF96F40C626B51 Ref B: MAA201060516047 Ref C: 2025-10-09T14:15:04Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: FA61FC3D40BD43D49E18DE08C9A68742 Ref B: MAA201060516039 Ref C: 2025-10-09T14:15:06Z' + 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 + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CDCF75DF55354532A1798499F9385907 Ref B: MAA201060516037 Ref C: 2025-10-09T14:15:07Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "North Central US (Stage)", "identity": null, "properties": + {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": null, "targetLabel": + null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name": "containerapp000002", + "command": null, "args": null, "env": null, "resources": null, "volumeMounts": + null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": + null}, "workloadProfileName": null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '993' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + cache-control: + - no-cache + content-length: + - '2605' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a982ca4c-56b7-4758-a63b-d6990c88b4ca + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 2D7D0A6BE5674C579EFB33D31C7229C3 Ref B: MAA201060515025 Ref C: 2025-10-09T14:15:09Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"InProgress","startTime":"2025-10-09T14:15:11.454903"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/657fad89-4ed3-4340-ae36-6adaf98f0412 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CEAAB05D523441F2B4E9DC5DECDEEA29 Ref B: MAA201060514021 Ref C: 2025-10-09T14:15:12Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"InProgress","startTime":"2025-10-09T14:15:11.454903"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0dd8d9bd-6272-44dd-94f6-0deca58203a4 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5B46E4868EEB4A728806F0C7BCD3D113 Ref B: MAA201060514049 Ref C: 2025-10-09T14:15:15Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"InProgress","startTime":"2025-10-09T14:15:11.454903"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/dcd46b2e-6569-4ff9-a597-7976d65fa714 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 7E290B6B56B94C959EFB50D44244F968 Ref B: MAA201060514017 Ref C: 2025-10-09T14:15:19Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"Succeeded","startTime":"2025-10-09T14:15:11.454903"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/07c730fb-d693-4c17-886a-e6b0fe6bfc30 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 94597277407B413CB618B98C1614F5CF Ref B: MAA201060515027 Ref C: 2025-10-09T14:15:23Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3310' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:15:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 57C1FD33376849C199F039F79A42B975 Ref B: MAA201060515029 Ref C: 2025-10-09T14:15:25Z' + 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 --kind + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1C7B177BE5724BAB9EEFEF9B99902226 Ref B: MAA201060513039 Ref C: 2025-10-09T14:16:07Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B812750070A44C15A0F797CD3923C2C4 Ref B: MAA201060515047 Ref C: 2025-10-09T14:16:09Z' + 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 --kind + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B1FCDA3832A445118250873E1A64945C Ref B: MAA201060516053 Ref C: 2025-10-09T14:16:11Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "North Central US (Stage)", "identity": null, "properties": + {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": null, "targetLabel": + null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0", "name": "functionapp000003", + "command": null, "args": null, "env": null, "resources": null, "volumeMounts": + null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": + null}, "workloadProfileName": null}, "tags": null, "kind": "functionapp"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1017' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + cache-control: + - no-cache + content-length: + - '2625' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/500eb401-5980-4264-b7b9-f6a9b6fb7be5 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: C1DBAF74FDB14257B6F010B0FAA7B636 Ref B: MAA201060516047 Ref C: 2025-10-09T14:16:13Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"InProgress","startTime":"2025-10-09T14:16:14.2138451"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/5626fe58-f2fe-4578-8e4d-e2546e127ce0 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1C479F90788B4C8793859F03590668A9 Ref B: MAA201060514039 Ref C: 2025-10-09T14:16:15Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"InProgress","startTime":"2025-10-09T14:16:14.2138451"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d2ba3d38-5a4a-4fc1-9502-ba0cdc8989f6 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 18B118D9FD3D496EA1E2F5A4510861B5 Ref B: MAA201060514009 Ref C: 2025-10-09T14:16:18Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"InProgress","startTime":"2025-10-09T14:16:14.2138451"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6fca53cd-c59a-40dd-ab53-7b0d3caf3d55 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 0951D01FA5B94EE39F3D662DA529ABD9 Ref B: MAA201060516051 Ref C: 2025-10-09T14:16:22Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"Succeeded","startTime":"2025-10-09T14:16:14.2138451"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/914ce939-9a6d-45df-8080-018f2f4e668d + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B8E261D82BE54A72B8EC3E3AC8991075 Ref B: MAA201060513047 Ref C: 2025-10-09T14:16:25Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3325' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:16:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1FCC0513C76A4BE181CF9532ED04F0A1 Ref B: MAA201060516035 Ref C: 2025-10-09T14:16:27Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--r0j00cp","name":"containerapp000002--r0j00cp","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T14:15:18+00:00","fqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '969' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ace6d236-9345-483b-b391-774322ba9051 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B0E79ED3D81543DFBEE7831EF9E16F09 Ref B: MAA201060513037 Ref C: 2025-10-09T14:17:29Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--01fr01x","name":"functionapp000003--01fr01x","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T14:16:20+00:00","fqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1038' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/060682e3-3767-4a7b-9a8c-e1a090cfd6f5 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: EA3144CAFFA44735A8227FAB68B1750B Ref B: MAA201060513033 Ref C: 2025-10-09T14:17:32Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3310' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1418DE03D91E4D53AEB69E6F54999019 Ref B: MAA201060516029 Ref C: 2025-10-09T14:17:34Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3310' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E04A9A06072142539433FE2D3B63839B Ref B: MAA201060513025 Ref C: 2025-10-09T14:17:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '231' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 1AA68D1D3032425B8B273FE973AF5C73 Ref B: MAA201060516035 Ref C: 2025-10-09T14:17:38Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''nonexistent-resource-group'' could not be found."}}' + headers: + cache-control: + - no-cache + content-length: + - '118' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 692983228E89499FB67F25514B5797DD Ref B: MAA201060515037 Ref C: 2025-10-09T14:17:40Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3325' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D8A4D216C7FA453485176F6401ABDC67 Ref B: MAA201060513029 Ref C: 2025-10-09T14:17:42Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3325' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D634510C850A49CE943C099F7BD25F53 Ref B: MAA201060515025 Ref C: 2025-10-09T14:17:44Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/nonexistent-revision/functions?api-version=2025-10-02-preview + response: + body: + string: '{"error":{"code":"InternalServerError","message":"Internal server error + occurred. Failed to retrieve functions for revision nonexistent-revision"}}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '147' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b0855633-8226-477e-9b00-c2eedff5a8b7 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9E2E13F90C624044991362FC610AF40C Ref B: MAA201060514051 Ref C: 2025-10-09T14:17:46Z' + x-powered-by: + - ASP.NET + status: + code: 500 + message: Internal Server Error +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3310' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 8916321D4BF548ADB3AC7297876679C6 Ref B: MAA201060516009 Ref C: 2025-10-09T14:17:48Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3310' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 7D199D598ED84E8A90A054EF4823A242 Ref B: MAA201060513045 Ref C: 2025-10-09T14:17:49Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''nonexistent-resource-group'' could not be found."}}' + headers: + cache-control: + - no-cache + content-length: + - '118' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: F6C54C086AA24F398CCBADF48F9CC6B3 Ref B: MAA201060515037 Ref C: 2025-10-09T14:17:51Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '231' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 5023F88EBF134DEFBCC7A3BA835ED768 Ref B: MAA201060515009 Ref C: 2025-10-09T14:17:53Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3325' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: ACF5A95347B24A8DB36EB1891E8BDCAE Ref B: MAA201060513021 Ref C: 2025-10-09T14:17:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3325' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: C8B323CC46E54457A5A1F1F480D3293A Ref B: MAA201060513025 Ref C: 2025-10-09T14:17:57Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function show + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision --function-name + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/nonexistent-revision/functions/HttpExample?api-version=2025-10-02-preview + response: + body: + string: '{"error":{"code":"InternalServerError","message":"Internal server error + occurred. Failed to retrieve functions for revision nonexistent-revision"}}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '147' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 14:17:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9eb7d0cc-cff4-41b1-85be-7577a82a2629 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CE4EAE712AC549AB8669FB8766EFCA83 Ref B: MAA201060514049 Ref C: 2025-10-09T14:17:58Z' + x-powered-by: + - ASP.NET + status: + code: 500 + message: Internal Server Error +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml new file mode 100644 index 00000000000..9600eb46e1a --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml @@ -0,0 +1,4149 @@ +interactions: +- 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.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 69E3E5C5354147708EB2C4F4326A1A6D Ref B: MAA201060515053 Ref C: 2025-10-09T20:46:39Z' + 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.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: BD4EC3BE27AC497B86A814041505C23F Ref B: MAA201060514031 Ref C: 2025-10-09T20:46:42Z' + 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 --kind --revisions-mode + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DE77EAFA065C406D838F775983B0EE60 Ref B: MAA201060515023 Ref C: 2025-10-09T20:46:44Z' + 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 --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1BF90721143E43FB8D52AE0FB8ED3629 Ref B: MAA201060513009 Ref C: 2025-10-09T20:46:46Z' + 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 --kind --revisions-mode + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6D8EE322B4004B6B8F7163BEAAE19F3C Ref B: MAA201060515009 Ref C: 2025-10-09T20:46:48Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "North Central US (Stage)", "identity": null, "properties": + {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + "configuration": {"secrets": null, "activeRevisionsMode": "multiple", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": + null, "stickySessions": null}, "dapr": null, "registries": null, "targetLabel": + null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": + "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest", "name": + "funcapp000002", "command": null, "args": null, "env": null, "resources": null, + "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": null, + "serviceBinds": null}, "workloadProfileName": null}, "tags": null, "kind": "functionapp"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '1018' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: PUT + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:46:52.5082301Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"CloudBuild","name":"funcapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + cache-control: + - no-cache + content-length: + - '2618' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-async-operation-timeout: + - PT15M + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d1d8980f-964f-4c3d-a85c-6345196b5b38 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 4B4D80AC76364B849CF8E570653BDE51 Ref B: MAA201060513019 Ref C: 2025-10-09T20:46:50Z' + 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 --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ae9756d7-08e5-4181-8360-27e4030f41a9 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 36E76898683446EAB6AD796BDEF24203 Ref B: MAA201060515025 Ref C: 2025-10-09T20:46:53Z' + 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 --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:46:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/f9e7f2b6-3208-4d37-8215-e7979c0617c3 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 549548B51F1541ACA5EA3C89AB2756C8 Ref B: MAA201060513045 Ref C: 2025-10-09T20:46:57Z' + 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 --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0877f3ae-64d6-4cfe-a2e2-4268b10bb701 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B335A4AE7A9945DDAB8B515126E64648 Ref B: MAA201060514053 Ref C: 2025-10-09T20:47:00Z' + 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 --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b82dd5ad-5f64-4728-9fd7-b143d116a6c0 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 599B28C8DAEC42C981B8CA18B664EFA5 Ref B: MAA201060514035 Ref C: 2025-10-09T20:47:04Z' + 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 --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"Succeeded","startTime":"2025-10-09T20:46:52.6005952"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a64494f5-7f69-46b2-aa0c-d3b331afd50f + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 372206B52541480089DF523E18677DAB Ref B: MAA201060516037 Ref C: 2025-10-09T20:47:08Z' + 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 --kind --revisions-mode + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:46:52.5082301"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--d9w5qxv","latestReadyRevisionName":"funcapp000002--d9w5qxv","latestRevisionFqdn":"funcapp000002--d9w5qxv.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3298' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 5FBBE49BF505452685DC9F8B084A0F26 Ref B: MAA201060515039 Ref C: 2025-10-09T20:47:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B83BD7E2D10949DD83E33F1836676CC9 Ref B: MAA201060516045 Ref C: 2025-10-09T20:47:42Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: F7A3A9EB68B8420ABAAB43ABDA085E55 Ref B: MAA201060516039 Ref C: 2025-10-09T20:47:44Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:46:52.5082301"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--d9w5qxv","latestReadyRevisionName":"funcapp000002--d9w5qxv","latestRevisionFqdn":"funcapp000002--d9w5qxv.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3298' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: BD173415E533483CB5073521D4978AF6 Ref B: MAA201060515031 Ref C: 2025-10-09T20:47:46Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"containers": [{"image": "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0", + "imageType": "ContainerImage", "name": "funcapp000002", "resources": {"cpu": + 0.5, "memory": "1Gi", "ephemeralStorage": "2Gi"}}], "revisionSuffix": null}}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: PATCH + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 09 Oct 2025 20:47:50 GMT + expires: + - '-1' + location: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationResults/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&t=638956396709775421&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=F1pkuPDwYivDMKOUg7UQSnm3SEPWnJ_cUgYWdfNUKyiKKmkKi2OtBnT_qSXBJkgkNQ4QY4MEfXZ3uQ6iAa_6Zgm_SeZX4cwgUYxbKxzNmk6nad-wIJ8SaedwpkLb3uqiEiFXEd7nZ9BzOltxivwd8xUIx0BM0Xbpj4p8VMAVG1lReNMQ7anH4wIa-96pM51RgLWrgZEzniaqDOfrXU-SxTNcUr-rv8TykOEXarxYZnZ9oZpM7Sm8I7sDqFTqI9EVcQ35SqQpV0GOE4JUceAxWJdh7XH0p8q5rviPoA20OZgfub-OqDWmSXemO-NnATclXnBCORXFs5XFsKn1uxGShg&h=Blba14mlDxCk-Wq_tZARBSso94RUu1a_rvQUz928cVI + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/575b441b-e869-432c-8845-3fd57dfed2f2 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 254CB1E592AE4ADDBE1DF20C198A3EDC Ref B: MAA201060515029 Ref C: 2025-10-09T20:47:48Z' + 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: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"InProgress","startTime":"2025-10-09T20:47:50.899483"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6963bf74-62a9-4611-8c48-937107bd8862 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 7BA9AE514B574625B229ADDE8B7C29F9 Ref B: MAA201060516051 Ref C: 2025-10-09T20:47:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"InProgress","startTime":"2025-10-09T20:47:50.899483"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/24a331a5-7952-4d57-b272-1c0d7b3c5b2f + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: CEB7E83B918A4D32B3C541B8258D7634 Ref B: MAA201060513037 Ref C: 2025-10-09T20:47:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"InProgress","startTime":"2025-10-09T20:47:50.899483"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:47:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/820c4d60-6df7-4565-9ed7-1637222597a7 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 3E4CFBC50D7043358F2182AAE01CC23D Ref B: MAA201060514031 Ref C: 2025-10-09T20:47:59Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"Succeeded","startTime":"2025-10-09T20:47:50.899483"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b908cec6-0818-444b-a737-24fff891b4f2 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B40991AC3F1844A6B8B816F3EC1B2EE4 Ref B: MAA201060514021 Ref C: 2025-10-09T20:48:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:47:49.9462615"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--d9w5qxv","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3295' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 4F75DFB0E5F248C0AFE038B35A916C83 Ref B: MAA201060515033 Ref C: 2025-10-09T20:48:03Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp revision list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions?api-version=2025-01-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--d9w5qxv","name":"funcapp000002--d9w5qxv","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T20:47:00+00:00","fqdn":"funcapp000002--d9w5qxv.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T20:47:56+00:00","fqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '2026' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/954e6851-8c02-4bfa-920b-9b69a48c3edc + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: ECFAAD6F00114513A9FD873DBA81B9F0 Ref B: MAA201060515037 Ref C: 2025-10-09T20:48:36Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North + Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East + US","East Asia","North Central US","Germany West Central","Poland Central","Italy + North","Switzerland North","Sweden Central","Norway East","Japan East","Australia + East","West Central US","East US 2","West US","Brazil South","Canada East","France + Central","Korea Central","South Africa North","South Central US","South India","UAE + North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East + US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland + West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy + North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Italy North","Poland Central","South India","Switzerland + West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central + US EUAP","East US 2 EUAP","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","Canada East","West Central + US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio + India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North + Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan + East","UK South","West US","Central US","North Central US","South Central + US","Korea Central","Brazil South","West US 3","France Central","South Africa + North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central + India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain + Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East + Asia","North Central US","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central + US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East + US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West + US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '39322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 24C05AA21C9A4AE39933986D15B45A1F Ref B: MAA201060515047 Ref C: 2025-10-09T20:48:38Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:47:49.9462615"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3138' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9FDC83BD84424FCAA65D948A813B76C4 Ref B: MAA201060515029 Ref C: 2025-10-09T20:48:40Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001?api-version=2025-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T20:47:56+00:00","fqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '1006' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0a238932-dd5b-4711-bc8c-6c613c7764a1 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 874C0BCC87834EC29D79D92B6DC46A7F Ref B: MAA201060514045 Ref C: 2025-10-09T20:48:41Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 50, + "latestRevision": true}, {"revisionName": "funcapp000002--0000001", "weight": + 50, "latestRevision": false}]}}}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + Content-Length: + - '184' + Content-Type: + - application/json + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: PATCH + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-01-01 + response: + body: + string: '' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + azure-asyncoperation: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 09 Oct 2025 20:48:44 GMT + expires: + - '-1' + location: + - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationResults/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=D-u12pnQnk_F87NQGug7PDZTdHzk6of5LMgarLhtmN6toHwF9F4oWK0x0pPsV4XxdXyEybtVG-HXPhA_U--L-JbiZGDoZtU9tXLh9Y1auOYjqtp-YpDPun1k5RfimB35SJEZXLpHxyQROB576q-DiU1gI1F5Er2LX2yvojPqIuQlkebrKsMTkCy09Xgj6zjC7-FwQX9ATKxZjShtQuSQrebbfvivqm1iRQYs-3C9rcfV5J1iSsgmCEpQkDs7bRKu73LQZIQBd9ea201jKnYv1_5A_bzLbt0C4j4G5QPC91nspaI3wRyMlPT79UNjpjpNrEDa7--l0sWha054AXL-qg&h=zZCcOyVQ_X6eu2NBB3sSKvhvdF_IgBPJV0hmHmKLRaY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/31d3f10b-c331-48b8-b420-488150647a98 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-ms-throttling-version: + - v1 + x-msedge-ref: + - 'Ref A: 7096502F85884A34AD1B257391C69409 Ref B: MAA201060513023 Ref C: 2025-10-09T20:48:42Z' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e81228b5-f1ac-4a8c-87ff-7ea495517c76 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: AFE748D51E02464FB953F9746D851634 Ref B: MAA201060514051 Ref C: 2025-10-09T20:48:45Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8a125c9c-a069-4c49-8973-4962b2b7eee8 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B54B666567E7461C9340DD0AE87DFD7D Ref B: MAA201060515047 Ref C: 2025-10-09T20:48:48Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/06a6bc77-6b05-407a-8246-f78d48de617c + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 1BDACE62EBB64322B111ACBEC1DC00C0 Ref B: MAA201060516025 Ref C: 2025-10-09T20:48:51Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/abb3687f-c6bc-46a7-b389-bf319fa9e869 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 62A9B6DAD2B0461CB9D8C8B5F90449C2 Ref B: MAA201060514053 Ref C: 2025-10-09T20:48:55Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"Succeeded","startTime":"2025-10-09T20:48:44.4778429"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:48:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/03a1abcd-8ce0-42e5-80c2-f3b27490448f + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: B9605DCA38244B06BD3A9E2A957BAA11 Ref B: MAA201060515021 Ref C: 2025-10-09T20:48:58Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp ingress traffic set + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision-weight --revision-weight + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-01-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3191' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 617B7D4911CF4E72A9C16005106D218D Ref B: MAA201060516051 Ref C: 2025-10-09T20:49:00Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3348' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: E8F81B1DC91B4F62A2960BD243712348 Ref B: MAA201060515011 Ref C: 2025-10-09T20:49:02Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3348' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 234C5179CBC444DCB0C45F3274A71BC6 Ref B: MAA201060515053 Ref C: 2025-10-09T20:49:04Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3348' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: DB234A939DF04EE0B69D43876C40BA6F Ref B: MAA201060516035 Ref C: 2025-10-09T20:49:06Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/nonexistent-revision/functions?api-version=2025-10-02-preview + response: + body: + string: '{"error":{"code":"InternalServerError","message":"Internal server error + occurred. Failed to retrieve functions for revision nonexistent-revision"}}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '147' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/39217b63-7b8f-43fe-89f4-c63a79de51b3 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 94FBFE8C69F44184883FD8341CBAA8BD Ref B: MAA201060516047 Ref C: 2025-10-09T20:49:08Z' + x-powered-by: + - ASP.NET + status: + code: 500 + message: Internal Server Error +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3348' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 6D9D1C746A6649489273B1961B3387B2 Ref B: MAA201060516037 Ref C: 2025-10-09T20:49:10Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3348' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9C0407AFE3534D5C969B77BDFAC83221 Ref B: MAA201060516029 Ref C: 2025-10-09T20:49:11Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--d9w5qxv/functions?api-version=2025-10-02-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--d9w5qxv/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '524' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/40a204d8-d64b-4a6c-8407-c7ebca501339 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: D868D8B6ABF348D2B9B6174E7FB78DE9 Ref B: MAA201060514051 Ref C: 2025-10-09T20:49:12Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3348' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 9FBCE945CDD44D0CABDFD613411D09A5 Ref B: MAA201060515053 Ref C: 2025-10-09T20:49:14Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North + Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '3348' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 2B51B016C5174292AF7BA387D02C921A Ref B: MAA201060513039 Ref C: 2025-10-09T20:49:15Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function list + Connection: + - keep-alive + ParameterSetName: + - -g -n --revision + User-Agent: + - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.77.0 + method: GET + uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions?api-version=2025-10-02-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '524' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 09 Oct 2025 20:49:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0476914d-a91f-439a-9ed8-63f4f69d5de6 + x-ms-throttling-version: + - v2 + x-msedge-ref: + - 'Ref A: 417206B50BCD492AB5195AF6094732DB Ref B: MAA201060514029 Ref C: 2025-10-09T20:49:17Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py new file mode 100644 index 00000000000..058e5126d1e --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -0,0 +1,483 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +import os +import time +import base64 +import unittest + +from azure.cli.command_modules.containerapp._utils import format_location +from unittest import mock +from azure.cli.core.azclierror import ValidationError, CLIInternalError + +from azure.cli.testsdk.scenario_tests import AllowLargeResponse, live_only +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck, JMESPathCheckNotExists, JMESPathCheckExists, live_only, StorageAccountPreparer, LogAnalyticsWorkspacePreparer) +from azure.mgmt.core.tools import parse_resource_id + +from azext_containerapp.tests.latest.common import (write_test_file, clean_up_test_file) +from .common import TEST_LOCATION, STAGE_LOCATION +from .custom_preparers import SubnetPreparer +from .utils import create_containerapp_env, prepare_containerapp_env_for_app_e2e_tests, prepare_containerapp_env_v1_for_app_e2e_tests + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + + +class ContainerappFunctionTests(ScenarioTest): + def __init__(self, *arg, **kwargs): + super().__init__(*arg, random_config_dir=True, **kwargs) + + + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northcentralus") + def test_containerapp_function_list_show_basic(self, resource_group): + """Test basic function list functionality with various scenarios""" + location = "northcentralusstage" + self.cmd('configure --defaults location={}'.format(location)) + + ca_name = self.create_random_name(prefix='containerapp', length=24) + function_name = "HttpExample" + function_image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" + + env = prepare_containerapp_env_for_app_e2e_tests(self, location=location) + + # Create a function app + self.cmd(f'containerapp create -g {resource_group} -n {ca_name} --image {function_image} --ingress external --target-port 80 --environment {env} --kind functionapp', checks=[ + JMESPathCheck("properties.provisioningState", "Succeeded"), + JMESPathCheck("kind", "functionapp") + ]) + time.sleep(30) + rev_status = self.cmd(f'az containerapp revision list -g {resource_group} -n {ca_name}').get_output_in_json() + assert any(r["properties"]["active"] and r["properties"]["healthState"] == "Healthy" for r in rev_status) + + time.sleep(30) + result = self.cmd(f'containerapp function list -g {resource_group} -n {ca_name}').get_output_in_json() + + # Test successful function show + function_details = self.cmd(f'containerapp function show -g {resource_group} -n {ca_name} --function-name {function_name}').get_output_in_json() + + # Verify function details structure + self.assertIsInstance(function_details, dict, "Function show should return a dictionary") + self.assertIn('name', function_details["properties"], "Function details should contain name") + self.assertEqual(function_details["properties"]['name'], function_name, "Function name should match requested function") + + + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northcentralus") + def test_containerapp_function_list_show_error_scenarios(self, resource_group): + """Test error scenarios for function list command""" + location = "northcentralusstage" + self.cmd('configure --defaults location={}'.format(location)) + + ca_name = self.create_random_name(prefix='containerapp', length=24) + ca_func_name = self.create_random_name(prefix='functionapp', length=24) + containerapp_image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest" + function_image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" + function_name = "HttpExample" + + env = prepare_containerapp_env_for_app_e2e_tests(self, location=location) + + # Create a regular container app (not a function app) + self.cmd(f'containerapp create -g {resource_group} -n {ca_name} --image {containerapp_image} --ingress external --target-port 80 --environment {env}', checks=[ + JMESPathCheck("properties.provisioningState", "Succeeded") + ]) + time.sleep(40) + self.cmd(f'containerapp create -g {resource_group} -n {ca_func_name} --image {function_image} --ingress external --target-port 80 --environment {env} --kind functionapp', checks=[ + JMESPathCheck("properties.provisioningState", "Succeeded"), + JMESPathCheck("kind", "functionapp") + ]) + time.sleep(60) + + rev_status = self.cmd(f'az containerapp revision list -g {resource_group} -n {ca_name}').get_output_in_json() + assert any(r["properties"]["active"] and r["properties"]["healthState"] == "Healthy" for r in rev_status) + + rev_status = self.cmd(f'az containerapp revision list -g {resource_group} -n {ca_func_name}').get_output_in_json() + assert any(r["properties"]["active"] and r["properties"]["healthState"] == "Healthy" for r in rev_status) + + # Test: List functions from a regular app should fail + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function list -g {resource_group} -n {ca_name}') + + # Test: List functions from non-existent app should fail + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function list -g {resource_group} -n nonexistent-app') + + # Test: List functions from non-existent resource group should fail + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function list -g nonexistent-resource-group -n {ca_func_name}') + + # Test: List functions with non-existent revision should fail + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function list -g {resource_group} -n {ca_func_name} --revision nonexistent-revision') + + #Test: Show functions with a regular app should fail + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function show -g {resource_group} -n {ca_name} --function-name {function_name}') + + # Test: Show functions with non-existent resource group + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function show -g nonexistent-resource-group -n {ca_func_name} --function-name {function_name}') + + # Test: Show functions with non-existent container app + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function show -g {resource_group} -n nonexistent-app --function-name {function_name}') + + # Test: Show functions with non-existent revision should fail + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function show -g {resource_group} -n {ca_func_name} --revision nonexistent-revision --function-name {function_name}') + + + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northcentralus") + def test_containerapp_function_list_show_multirevision_scenarios(self, resource_group): + """Test multiple revisions scenarios for function list command""" + location = "northcentralusstage" + self.cmd('configure --defaults location={}'.format(location)) + env = prepare_containerapp_env_for_app_e2e_tests(self, location=location) + + # Create a function app for revision testing + ca_func_name = self.create_random_name(prefix='funcapp', length=24) + function_image_latest = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest" + function_image_v1 = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" + + # Create the initial function app with function_image_latest + self.cmd(f'containerapp create -g {resource_group} -n {ca_func_name} ' + f'--image {function_image_latest} --ingress external --target-port 80 ' + f'--environment {env} --kind functionapp --revisions-mode multiple', checks=[ + JMESPathCheck("properties.provisioningState", "Succeeded"), + JMESPathCheck("kind", "functionapp") + ]) + + # Wait for the first revision to be created + time.sleep(30) + + # Update the function app to use the second image (function_image_v1) + self.cmd(f'containerapp update -g {resource_group} -n {ca_func_name} --image {function_image_v1}') + + # Wait for the second revision to be created + time.sleep(30) + + # List the revisions to retrieve revision names + revision_list = self.cmd(f'containerapp revision list -g {resource_group} -n {ca_func_name}').get_output_in_json() + self.assertGreater(len(revision_list), 1, "There should be more than one revision.") + + # Extract revision names from the list + revision_name_latest = revision_list[0]['name'] + revision_name_v1 = revision_list[1]['name'] + + # Split traffic between the two revisions + self.cmd(f'containerapp ingress traffic set -g {resource_group} -n {ca_func_name} ' + f'--revision-weight {revision_name_latest}=50 ' + f'--revision-weight {revision_name_v1}=50') + + # Test 1: Do not provide revision name - should fail (multiple revision mode requires revision name) + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function list -g {resource_group} -n {ca_func_name}') + + # Test 2: Provide wrong revision name - should fail + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function list -g {resource_group} -n {ca_func_name} --revision nonexistent-revision') + + # Test 3: Provide correct revision name - should pass for both revisions + # Test with first revision + function_list_rev1 = self.cmd(f'containerapp function list -g {resource_group} -n {ca_func_name} --revision {revision_name_latest}').get_output_in_json() + assert isinstance(function_list_rev1["value"], list) + assert len(function_list_rev1["value"]) > 0 + + + # Test with second revision + function_list_rev2 = self.cmd(f'containerapp function list -g {resource_group} -n {ca_func_name} --revision {revision_name_v1}').get_output_in_json() + assert isinstance(function_list_rev2["value"], list) + assert len(function_list_rev2["value"]) > 0 + + + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northcentralus") + def test_containerapp_function_keys(self, resource_group): + """Test function keys show/list/set functionality""" + location = "northcentralus" + functionapp_location = "northcentralusstage" + storage_account_name = self.create_random_name("storageacc", length=24) + funcapp_name = self.create_random_name("functionapp", length=24) + image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" + function_name = "HttpExample" + custom_key_name = "mycustomkey" + + # Step 1: Create storage account + self.cmd( + f'storage account create -n {storage_account_name} -g {resource_group} --location {location} --sku Standard_LRS', + checks=[JMESPathCheck("provisioningState", "Succeeded")] + ) + time.sleep(20) + + # Get storage connection string + storage_conn_str = self.cmd( + f'storage account show-connection-string -n {storage_account_name} -g {resource_group} --query connectionString -o tsv' + ).output.strip() + + # Step 2: Prepare Container App environment + env = prepare_containerapp_env_v1_for_app_e2e_tests(self, location=functionapp_location) # this is temporary and will be removed in future + time.sleep(100) + + # Step 3: Create the function app (container app) + self.cmd( + f'containerapp create -g {resource_group} -n {funcapp_name} ' + f'--image {image} --ingress external --target-port 80 ' + f'--environment {env} --kind functionapp ' + f'--env-vars AzureWebJobsStorage="{storage_conn_str}" ', + checks=[ + JMESPathCheck("kind", "functionapp") + ]) + # Poll for healthy revision + max_retries = 60 # 10 minutes max wait + retry_count = 0 + while retry_count < max_retries: + rev_status = self.cmd(f'containerapp revision list -g {resource_group} -n {funcapp_name}').get_output_in_json() + if any(r["properties"]["active"] and r["properties"]["healthState"] == "Healthy" for r in rev_status): + break + retry_count += 1 + time.sleep(10) + else: + self.fail("Timed out waiting for healthy revision") + + # Poll for running replica + retry_count = 0 + while retry_count < max_retries: + revision_name = rev_status[0]["name"] if rev_status else None + if revision_name: + replicas = self.cmd(f'containerapp replica list -g {resource_group} -n {funcapp_name} --revision {revision_name}').get_output_in_json() + if any(r["properties"]["runningState"] == "Running" for r in replicas): + break + retry_count += 1 + time.sleep(10) + else: + self.fail("Timed out waiting for running replica") + + + host_keys = self.cmd(f'containerapp function keys list -g {resource_group} -n {funcapp_name} --key-type hostKey').get_output_in_json() + self.assertIsInstance(host_keys.get("value"), dict) + self.assertIn("keys", host_keys.get("value")) + self.assertIsInstance(host_keys.get("value").get("keys"), list) + + # Test list master keys + master_keys = self.cmd(f'containerapp function keys list -g {resource_group} -n {funcapp_name} --key-type masterKey').get_output_in_json() + self.assertIsInstance(master_keys.get("value"), dict) + self.assertIn("keys", master_keys.get("value")) + self.assertIsInstance(master_keys.get("value").get("keys"), list) + + # Test list system keys + system_keys = self.cmd(f'containerapp function keys list -g {resource_group} -n {funcapp_name} --key-type systemKey').get_output_in_json() + self.assertIsInstance(system_keys.get("value"), dict) + self.assertIn("keys", system_keys.get("value")) + self.assertIsInstance(system_keys.get("value").get("keys"), list) + + # Test list function keys for a specific function + function_name = "HttpExample" + function_keys = self.cmd(f'containerapp function keys list -g {resource_group} -n {funcapp_name} --key-type functionKey --function-name {function_name}').get_output_in_json() + self.assertIsInstance(function_keys.get("value"), dict) + self.assertIn("keys", function_keys.get("value")) + self.assertIsInstance(function_keys.get("value").get("keys"), list) + + # Test show host key + host_key = self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type hostKey --key-name default').get_output_in_json() + self.assertIsInstance(host_key, dict) + self.assertIn('value', host_key) + self.assertIsInstance(host_key.get('value'), dict) + self.assertIn('name', host_key.get('value')) + self.assertIn('value', host_key.get('value')) + + # Test show master key + master_key = self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type masterKey --key-name _master').get_output_in_json() + self.assertIsInstance(master_key, dict) + self.assertIn('value', master_key) + self.assertIsInstance(master_key.get('value'), dict) + self.assertIn('name', master_key.get('value')) + self.assertIn('value', master_key.get('value')) + + # Test show function key for a specific function + function_key = self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type functionKey --key-name default --function-name {function_name}').get_output_in_json() + self.assertIsInstance(function_key, dict) + self.assertIn('value', function_key) + self.assertIsInstance(function_key.get('value'), dict) + self.assertIn('name', function_key.get('value')) + self.assertIn('value', function_key.get('value')) + + custom_key_name = "mycustomkey" + custom_key_value = "MyCustomKeyValue123456789" + + # Test set function key for a specific function + set_function_key = self.cmd(f'containerapp function keys set -g {resource_group} -n {funcapp_name} --key-type functionKey --key-name {custom_key_name} --key-value {custom_key_value} --function-name {function_name}').get_output_in_json() + self.assertIsInstance(set_function_key, dict) + + # Verify the function key was set by showing it (more reliable than checking set response structure) + verify_function_key = self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type functionKey --key-name {custom_key_name} --function-name {function_name}').get_output_in_json().get('value') + self.assertEqual(verify_function_key['name'], custom_key_name) + self.assertEqual(verify_function_key['value'], custom_key_value) + + # Test set host key + host_key_value = "MyHostKeyValue123456789" + set_host_key = self.cmd(f'containerapp function keys set -g {resource_group} -n {funcapp_name} --key-type hostKey --key-name {custom_key_name} --key-value {host_key_value}').get_output_in_json() + self.assertIsInstance(set_host_key, dict) + + # Verify the host key was set by showing it + verify_host_key = self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type hostKey --key-name {custom_key_name}').get_output_in_json().get('value') + self.assertEqual(verify_host_key['name'], custom_key_name) + self.assertEqual(verify_host_key['value'], host_key_value) + + # Test set system key + system_key_value = "MySystemKeyValue123456789" + set_system_key = self.cmd(f'containerapp function keys set -g {resource_group} -n {funcapp_name} --key-type systemKey --key-name {custom_key_name} --key-value {system_key_value}').get_output_in_json() + self.assertIsInstance(set_system_key, dict) + + # Verify the system key was set by showing it + verify_system_key = self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type systemKey --key-name {custom_key_name}').get_output_in_json().get('value') + self.assertEqual(verify_system_key['name'], custom_key_name) + self.assertEqual(verify_system_key['value'], system_key_value) + + # Test update existing key (set with same name but different value) + updated_key_value = "UpdatedKeyValue987654321" + updated_function_key = self.cmd(f'containerapp function keys set -g {resource_group} -n {funcapp_name} --key-type functionKey --key-name {custom_key_name} --key-value {updated_key_value} --function-name {function_name}').get_output_in_json() + self.assertIsInstance(updated_function_key, dict) + + # Verify the key was updated by showing it + verify_updated_key = self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type functionKey --key-name {custom_key_name} --function-name {function_name}').get_output_in_json().get('value') + self.assertEqual(verify_updated_key['value'], updated_key_value) + + # Test with non-existent resource group + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function keys list -g nonexistent-rg -n {funcapp_name} --key-type hostKey') + + # Test with non-existent container app + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function keys list -g {resource_group} -n nonexistent-app --key-type hostKey') + + # Test function key operations without function name + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function keys list -g {resource_group} -n {funcapp_name} --key-type functionKey') + + with self.assertRaisesRegex(Exception, ".*"): + self.cmd(f'containerapp function keys show -g {resource_group} -n {funcapp_name} --key-type functionKey --key-name default') + + + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northcentralus") + def test_containerapp_function_invocations_summary_traces(self, resource_group): + """Test function keys show/list/set functionality using connection string and App Insights""" + location = "northcentralus" + functionapp_location = "northcentralusstage" + funcapp_name = self.create_random_name("functionapp", length=24) + image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" + app_insights_name = self.create_random_name("appinsights", length=24) + containerapp_image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest" + ca_name = self.create_random_name(prefix='containerapp', length=24) + # Step 1: Create Application Insights (standard) + self.cmd( + f'monitor app-insights component create -a {app_insights_name} ' + f'--location {location} -g {resource_group} --application-type web', + checks=[JMESPathCheck("name", app_insights_name)] + ) + time.sleep(20) + + # Get App Insights connection string + app_insights_connection_string = self.cmd( + f'monitor app-insights component show -a {app_insights_name} -g {resource_group} ' + f'--query connectionString -o tsv' + ).output.strip() + + # Step 2: Prepare Container App environment + env = prepare_containerapp_env_v1_for_app_e2e_tests(self, location=functionapp_location) # this is temporary and will be removed in future + time.sleep(100) + + # Step 3: Create the function app (container app) + self.cmd( + f'containerapp create -g {resource_group} -n {ca_name} ' + f'--image {containerapp_image} --ingress external --target-port 80 --environment {env} ', + checks=[ + JMESPathCheck("properties.provisioningState", "Succeeded") + ]) + self.cmd( + f'containerapp create -g {resource_group} -n {funcapp_name} ' + f'--image {image} --ingress external --target-port 80 ' + f'--environment {env} --kind functionapp ' + f'--env-vars APPLICATIONINSIGHTS_CONNECTION_STRING="{app_insights_connection_string}"', + checks=[ + JMESPathCheck("kind", "functionapp") + ]) + # Poll for healthy revision + max_retries = 60 # 10 minutes max wait + retry_count = 0 + while retry_count < max_retries: + rev_status = self.cmd(f'containerapp revision list -g {resource_group} -n {funcapp_name}').get_output_in_json() + if any(r["properties"]["active"] and r["properties"]["healthState"] == "Healthy" for r in rev_status): + break + retry_count += 1 + time.sleep(10) + else: + self.fail("Timed out waiting for healthy revision") + + # Poll for running replica + retry_count = 0 + while retry_count < max_retries: + revision_name = rev_status[0]["name"] if rev_status else None + if revision_name: + replicas = self.cmd(f'containerapp replica list -g {resource_group} -n {funcapp_name} --revision {revision_name}').get_output_in_json() + if any(r["properties"]["runningState"] == "Running" for r in replicas): + break + retry_count += 1 + time.sleep(10) + else: + self.fail("Timed out waiting for running replica") + + # Get the FQDN of the function app and invoke the HTTP function to generate telemetry + fqdn = self.cmd( + f'containerapp show --resource-group {resource_group} --name {funcapp_name} ' + f'--query properties.configuration.ingress.fqdn --output tsv' + ).output.strip() + + # Make HTTP calls to the function to generate invocation data + import requests + for _ in range(7): + try: + requests.post(f'https://{fqdn}/api/HttpExample', timeout=30) + except Exception: + # It's expected that the function call might fail, we just want to generate telemetry + pass + + time.sleep(60) + + # Test function invocations summary with default timespan + summary_result = self.cmd(f'containerapp function invocations summary -n {funcapp_name} -g {resource_group} --function-name HttpExample').get_output_in_json() + self.assertIn('SuccessCount', summary_result[0]) + self.assertIn('ErrorCount', summary_result[0]) + + # Test function invocations summary with custom timespan + summary_result_5h = self.cmd(f'containerapp function invocations summary -n {funcapp_name} -g {resource_group} --function-name HttpExample --timespan 5h').get_output_in_json() + self.assertIn('SuccessCount', summary_result_5h[0]) + self.assertIn('ErrorCount', summary_result_5h[0]) + + # Test function invocations summary on non-function app (should fail) + with self.assertRaises(Exception): + self.cmd(f'containerapp function invocations summary -n {ca_name} -g {resource_group} --function-name HttpExample') + + # Test function invocations summary on non-existent container app (should fail) + with self.assertRaises(Exception): + self.cmd(f'containerapp function invocations summary -n non-existent-app -g {resource_group} --function-name HttpExample') + + # Test function invocations traces with default parameters + traces_result = self.cmd(f'containerapp function invocations traces -n {funcapp_name} -g {resource_group} --function-name HttpExample').get_output_in_json() + self.assertIsInstance(traces_result, list) + + # Test function invocations traces with custom timespan and limit + traces_result_custom = self.cmd(f'containerapp function invocations traces -n {funcapp_name} -g {resource_group} --function-name HttpExample --timespan 5h --limit 3').get_output_in_json() + self.assertIsInstance(traces_result_custom, list) + self.assertLessEqual(len(traces_result_custom), 3) + + # Test function invocations traces on non-function app (should fail) + with self.assertRaises(Exception): + self.cmd(f'containerapp function invocations traces -n {ca_name} -g {resource_group} --function-name HttpExample') + + # Test function invocations traces on non-existent container app (should fail) + with self.assertRaises(Exception): + self.cmd(f'containerapp function invocations traces -n non-existent-app -g {resource_group} --function-name HttpExample') \ No newline at end of file From c01dbdfdcfa645f4aecc9e46989a016d857c9a9b Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Wed, 15 Oct 2025 14:28:43 +0000 Subject: [PATCH 03/15] fixing style errors --- src/containerapp/azext_containerapp/_validators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index ee7af6c7f24..23d54230fe3 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -278,6 +278,7 @@ def _set_debug_defaults(cmd, namespace): if revision_containers: namespace.container = revision_containers[0]["name"] + def validate_container_app_exists(cmd, resource_group_name, container_app_name): from ._client_factory import handle_raw_exception from ._clients import ContainerAppPreviewClient @@ -368,4 +369,4 @@ def validate_basic_arguments(resource_group_name, container_app_name, **kwargs): for arg_name, arg_value in kwargs.items(): if not arg_value: logger.debug("Additional argument validation failed: '%s' is empty or None", arg_name) - raise ValidationError(f"{arg_name.replace('_', ' ').title()} is required.") \ No newline at end of file + raise ValidationError(f"{arg_name.replace('_', ' ').title()} is required.") From aac3e984ce576471edd8b1bf9d1eea2718d7658c Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Tue, 11 Nov 2025 07:24:20 +0000 Subject: [PATCH 04/15] resolving some of the comments --- src/containerapp/HISTORY.rst | 6 +++--- src/containerapp/azext_containerapp/custom.py | 3 +++ .../tests/latest/test_containerapp_function.py | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index 5598edc75c7..20ec405e13b 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -4,9 +4,6 @@ Release History =============== upcoming ++++++ - -1.2.0b4 -++++++ * 'az containerapp function list': List functions in a container app * 'az containerapp function show': Show specific function in a container app * 'az containerapp function keys show': Show specific function key in a container app @@ -14,6 +11,9 @@ upcoming * 'az containerapp function keys set': Create a new or update an existing function key in a container app * 'az containerapp function invocations summary': Get function invocation summary from Application Insights * 'az containerapp function invocations traces': Get function invocation traces from Application Insights + +1.2.0b4 +++++++ * 'az containerapp update/up': Disallow changing `--revisions-mode` to Labels. * 'az containerapp session code-interpreter': Fix `--path` in examples * 'az containerapp sessionpool create/update': Support `--lifecycle-type` and `--max-alive-period` diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index b735d90ff02..bac71635d09 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -3615,6 +3615,7 @@ def list_maintenance_config(cmd, resource_group_name, env_name): def containerapp_debug(cmd, resource_group_name, name, container=None, revision=None, replica=None, debug_command=None): + logger.warning("Connecting...") if debug_command is not None: raw_parameters = { 'resource_group_name': resource_group_name, @@ -3654,12 +3655,14 @@ def containerapp_debug(cmd, resource_group_name, name, container=None, revision= while conn.is_connected: if not reader.is_alive() or not writer.is_alive(): + logger.warning("Reader or Writer for WebSocket is not alive. Closing the connection.") conn.disconnect() try: time.sleep(0.1) except KeyboardInterrupt: if conn.is_connected: + logger.info("Caught KeyboardInterrupt. Sending ctrl+c to server") conn.send(SSH_CTRL_C_MSG) diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py index 058e5126d1e..e125e573a81 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -34,7 +34,7 @@ def __init__(self, *arg, **kwargs): @ResourceGroupPreparer(location="northcentralus") def test_containerapp_function_list_show_basic(self, resource_group): """Test basic function list functionality with various scenarios""" - location = "northcentralusstage" + location = TEST_LOCATION self.cmd('configure --defaults location={}'.format(location)) ca_name = self.create_random_name(prefix='containerapp', length=24) @@ -365,7 +365,7 @@ def test_containerapp_function_keys(self, resource_group): @ResourceGroupPreparer(location="northcentralus") def test_containerapp_function_invocations_summary_traces(self, resource_group): """Test function keys show/list/set functionality using connection string and App Insights""" - location = "northcentralus" + location = TEST_LOCATION functionapp_location = "northcentralusstage" funcapp_name = self.create_random_name("functionapp", length=24) image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" From fdc29375e3cfb27dc19c4594b10a7fd7ff13b439 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Tue, 11 Nov 2025 09:58:49 +0000 Subject: [PATCH 05/15] resolving comments --- .../azext_containerapp/_clients.py | 142 +++--------------- src/containerapp/azext_containerapp/_utils.py | 14 ++ .../containerapp_functions_decorator.py | 133 +++++++++++++--- 3 files changed, 140 insertions(+), 149 deletions(-) diff --git a/src/containerapp/azext_containerapp/_clients.py b/src/containerapp/azext_containerapp/_clients.py index 58f84e3b903..7e3da3bf078 100644 --- a/src/containerapp/azext_containerapp/_clients.py +++ b/src/containerapp/azext_containerapp/_clients.py @@ -305,7 +305,6 @@ def list(cls, cmd, resource_group_name, container_app_name): class ContainerAppFunctionsPreviewClient(): api_version = "2025-10-02-preview" - APP_INSIGHTS_API_VERSION = "2018-04-20" @classmethod def list_functions_by_revision(cls, cmd, resource_group_name, container_app_name, revision_name): @@ -379,114 +378,9 @@ def get_function(cls, cmd, resource_group_name, container_app_name, function_nam raise CLIError(f"Error retrieving function '{function_name}' for container app '{container_app_name}'.") return r.json() - @classmethod - def get_function_invocation_summary(cls, cmd, resource_group_name, container_app_name, revision_name, function_name, timespan="30d"): - # Fetch the app insights resource app id - app_id = cls._get_app_insights_id(cmd, resource_group_name, container_app_name, revision_name) - - # Use application insights query to get function invocations summary - invocation_summary_query = ( - f"requests | extend functionNameFromCustomDimension = tostring(customDimensions['faas.name']) " - f"| where timestamp >= ago({timespan}) " - f"| where cloud_RoleName =~ '{container_app_name}' " - f"| where cloud_RoleInstance contains '{revision_name}' " - f"| where operation_Name =~ '{function_name}' or functionNameFromCustomDimension =~ '{function_name}' " - f"| summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)" - ) - - try: - result = cls._execute_app_insights_query(cmd, app_id, invocation_summary_query, "getLast30DaySummary") - return result - except Exception as ex: - raise CLIError(f"Error retrieving function invocation summary: {str(ex)}") - - @classmethod - def get_function_invocation_traces(cls, cmd, resource_group_name, container_app_name, revision_name, function_name, timespan="30d", limit=20): - # Fetch the app insights resource app id - app_id = cls._get_app_insights_id(cmd, resource_group_name, container_app_name, revision_name) - - # Use application insights query to get function invocations traces - invocation_traces_query = ( - f"requests | extend functionNameFromCustomDimension = tostring(customDimensions['faas.name']) " - f"| project timestamp, id, operation_Name, success, resultCode, duration, operation_Id, functionNameFromCustomDimension, " - f"cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions['InvocationId']), tostring(customDimensions['faas.invocation_id'])) " - f"| where timestamp > ago({timespan}) " - f"| where cloud_RoleName =~ '{container_app_name}' " - f"| where cloud_RoleInstance contains '{revision_name}' " - f"| where operation_Name =~ '{function_name}' or functionNameFromCustomDimension =~ '{function_name}' " - f"| order by timestamp desc | take {limit} " - f"| project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension " - ) - - try: - result = cls._execute_app_insights_query(cmd, app_id, invocation_traces_query, "getInvocationTraces") - return result - except Exception as ex: - raise CLIError(f"Error retrieving function invocation traces: {str(ex)}") - - @classmethod - def _get_app_insights_id(cls, cmd, resource_group_name, container_app_name, revision_name): - # Fetch the revision details using the container app client - revision = ContainerAppPreviewClient.show_revision(cmd, resource_group_name, container_app_name, revision_name) - # Extract the list of environment variables from the revision's properties - env_vars = [] - if revision and "properties" in revision and "template" in revision["properties"]: - containers = revision["properties"]["template"].get("containers", []) - for container in containers: - env_vars.extend(container.get("env", [])) - - # Check for APPLICATIONINSIGHTS_CONNECTION_STRING - ai_conn_str = None - for env in env_vars: - if env.get("name") == "APPLICATIONINSIGHTS_CONNECTION_STRING": - ai_conn_str = env.get("value") - break - - if not ai_conn_str: - raise CLIError(f"Required application setting APPLICATIONINSIGHTS_CONNECTION_STRING not present in the containerapp '{container_app_name}'.") - - # Extract ApplicationId from the connection string - app_id = None - parts = ai_conn_str.split(";") - for part in parts: - if part.startswith("ApplicationId="): - app_id = part.split("=", 1)[1] - break - - if not app_id: - raise CLIError(f"ApplicationId not found in APPLICATIONINSIGHTS_CONNECTION_STRING for containerapp '{container_app_name}'.") - return app_id - - @classmethod - def _execute_app_insights_query(cls, cmd, app_id, query, queryType, timespan="30D"): - - # Application Insights REST API endpoint - api_endpoint = "https://api.applicationinsights.io" - url = f"{api_endpoint}/v1/apps/{app_id}/query?api-version={cls.APP_INSIGHTS_API_VERSION}&queryType={queryType}" - - # Prepare the request body - body = { - "query": query, - "timespan": f"P{timespan}" - } - - # Execute the query using Azure CLI's send_raw_request - response = send_raw_request( - cmd.cli_ctx, - "POST", - url, - body=json.dumps(body), - headers=["Content-Type=application/json"] - ) - - result = response.json() - if isinstance(result, dict) and 'error' in result: - raise CLIError(f"Error retrieving invocations details: {result['error']}") - return result - @classmethod def show_function_keys(cls, cmd, resource_group_name, name, key_type, key_name, function_name=None, revision_name=None, replica_name=None, container_name=None): - from .custom import containerapp_debug + from ._utils import execute_function_admin_command command_fmt = "" if key_type != "functionKey": @@ -496,14 +390,14 @@ def show_function_keys(cls, cmd, resource_group_name, name, key_type, key_name, command_fmt = "/bin/azure-functions-admin keys show --key-type {} --key-name {} --function-name {}" command = command_fmt.format(key_type, key_name, function_name) - r = containerapp_debug( + r = execute_function_admin_command( cmd=cmd, resource_group_name=resource_group_name, name=name, - container=container_name, - revision=revision_name, - replica=replica_name, - debug_command=command + command=command, + revision_name=revision_name, + replica_name=replica_name, + container_name=container_name ) if not r: raise CLIError(f"Error retrieving function key '{key_name}' of type '{key_type}'.") @@ -511,7 +405,7 @@ def show_function_keys(cls, cmd, resource_group_name, name, key_type, key_name, @classmethod def list_function_keys(cls, cmd, resource_group_name, name, key_type, function_name=None, revision_name=None, replica_name=None, container_name=None): - from .custom import containerapp_debug + from ._utils import execute_function_admin_command command_fmt = "" if key_type != "functionKey": @@ -521,14 +415,14 @@ def list_function_keys(cls, cmd, resource_group_name, name, key_type, function_n command_fmt = "/bin/azure-functions-admin keys list --key-type {} --function-name {}" command = command_fmt.format(key_type, function_name) - r = containerapp_debug( + r = execute_function_admin_command( cmd=cmd, resource_group_name=resource_group_name, name=name, - container=container_name, - revision=revision_name, - replica=replica_name, - debug_command=command + command=command, + revision_name=revision_name, + replica_name=replica_name, + container_name=container_name ) if not r: raise CLIError(f"Error retrieving function keys of type '{key_type}'.") @@ -537,7 +431,7 @@ def list_function_keys(cls, cmd, resource_group_name, name, key_type, function_n @classmethod def set_function_keys(cls, cmd, resource_group_name, name, key_type, key_name, key_value, function_name=None, revision_name=None, replica_name=None, container_name=None): """Set/Update function keys based on key type""" - from .custom import containerapp_debug + from ._utils import execute_function_admin_command command_fmt = "" if key_type != "functionKey": @@ -550,14 +444,14 @@ def set_function_keys(cls, cmd, resource_group_name, name, key_type, key_name, k if key_value is not None: command += " --key-value {}".format(key_value) - r = containerapp_debug( + r = execute_function_admin_command( cmd=cmd, resource_group_name=resource_group_name, name=name, - container=container_name, - revision=revision_name, - replica=replica_name, - debug_command=command + command=command, + revision_name=revision_name, + replica_name=replica_name, + container_name=container_name ) if not r: raise CLIError(f"Error setting function key '{key_name}' of type '{key_type}'.") diff --git a/src/containerapp/azext_containerapp/_utils.py b/src/containerapp/azext_containerapp/_utils.py index e1636df7a2e..4efadb1f93f 100644 --- a/src/containerapp/azext_containerapp/_utils.py +++ b/src/containerapp/azext_containerapp/_utils.py @@ -875,3 +875,17 @@ def get_random_replica(cmd, resource_group_name, container_app_name, revision_na raise CLIError(f"Could not determine replica name for revision '{revision_name}' of container app '{container_app_name}'.") return replica_name, container_name + + +def execute_function_admin_command(cmd, resource_group_name, name, command, revision_name=None, replica_name=None, container_name=None): + from .custom import containerapp_debug + + return containerapp_debug( + cmd=cmd, + resource_group_name=resource_group_name, + name=name, + container=container_name, + revision=revision_name, + replica=replica_name, + debug_command=command + ) diff --git a/src/containerapp/azext_containerapp/containerapp_functions_decorator.py b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py index 18af01e8d24..2c44efce130 100644 --- a/src/containerapp/azext_containerapp/containerapp_functions_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py @@ -5,14 +5,17 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long, broad-except, logging-format-interpolation, too-many-public-methods, too-many-boolean-expressions, logging-fstring-interpolation +import json from knack.log import get_logger -from azure.cli.core.azclierror import ValidationError +from azure.cli.core.azclierror import ValidationError, CLIError +from azure.cli.core.util import send_raw_request from azure.cli.command_modules.containerapp.base_resource import BaseResource from ._client_factory import handle_raw_exception from ._validators import validate_basic_arguments, validate_revision_and_get_name, validate_functionapp_kind from ._transformers import process_app_insights_response +from ._clients import ContainerAppPreviewClient logger = get_logger(__name__) @@ -165,6 +168,8 @@ def show(self): class ContainerAppFunctionInvocationsDecorator(ContainerAppFunctionsDecorator): """Decorator for showing function invocation""" + APP_INSIGHTS_API_VERSION = "2018-04-20" + def validate_arguments(self): """Validate arguments required for function invocation operations""" validate_basic_arguments( @@ -190,21 +195,91 @@ def validate_arguments(self): self.set_argument_revision_name(revision_name) self.validate_function_name_requirement() + def _get_app_insights_id(self, resource_group_name, container_app_name, revision_name): + # Fetch the revision details using the container app client + revision = ContainerAppPreviewClient.show_revision(self.cmd, resource_group_name, container_app_name, revision_name) + # Extract the list of environment variables from the revision's properties + env_vars = [] + if revision and "properties" in revision and "template" in revision["properties"]: + containers = revision["properties"]["template"].get("containers", []) + for container in containers: + env_vars.extend(container.get("env", [])) + + # Check for APPLICATIONINSIGHTS_CONNECTION_STRING + ai_conn_str = None + for env in env_vars: + if env.get("name") == "APPLICATIONINSIGHTS_CONNECTION_STRING": + ai_conn_str = env.get("value") + break + + if not ai_conn_str: + raise CLIError(f"Required application setting APPLICATIONINSIGHTS_CONNECTION_STRING not present in the containerapp '{container_app_name}'.") + + # Extract ApplicationId from the connection string + app_id = None + parts = ai_conn_str.split(";") + for part in parts: + if part.startswith("ApplicationId="): + app_id = part.split("=", 1)[1] + break + + if not app_id: + raise CLIError(f"ApplicationId not found in APPLICATIONINSIGHTS_CONNECTION_STRING for containerapp '{container_app_name}'.") + return app_id + + def _execute_app_insights_query(self, app_id, query, query_type, timespan="30D"): + # Application Insights REST API endpoint + api_endpoint = "https://api.applicationinsights.io" + url = f"{api_endpoint}/v1/apps/{app_id}/query?api-version={self.APP_INSIGHTS_API_VERSION}&queryType={query_type}" + + # Prepare the request body + body = { + "query": query, + "timespan": f"P{timespan}" + } + + # Execute the query using Azure CLI's send_raw_request + response = send_raw_request( + self.cmd.cli_ctx, + "POST", + url, + body=json.dumps(body), + headers=["Content-Type=application/json"] + ) + + result = response.json() + if isinstance(result, dict) and 'error' in result: + raise CLIError(f"Error retrieving invocations details: {result['error']}") + return result + def get_summary(self): """Get function invocation summary using the client""" try: self.validate_arguments() - response = self.client.get_function_invocation_summary( - cmd=self.cmd, - resource_group_name=self.get_argument_resource_group_name(), - container_app_name=self.get_argument_container_app_name(), - revision_name=self.get_argument_revision_name(), - function_name=self.get_argument_function_name(), - timespan=self.get_argument_timespan() or "30d" + # Get arguments + resource_group_name = self.get_argument_resource_group_name() + container_app_name = self.get_argument_container_app_name() + revision_name = self.get_argument_revision_name() + function_name = self.get_argument_function_name() + timespan = self.get_argument_timespan() or "30d" + + # Fetch the app insights resource app id + app_id = self._get_app_insights_id(resource_group_name, container_app_name, revision_name) + + # Use application insights query to get function invocations summary + invocation_summary_query = ( + f"requests | extend functionNameFromCustomDimension = tostring(customDimensions['faas.name']) " + f"| where timestamp >= ago({timespan}) " + f"| where cloud_RoleName =~ '{container_app_name}' " + f"| where cloud_RoleInstance contains '{revision_name}' " + f"| where operation_Name =~ '{function_name}' or functionNameFromCustomDimension =~ '{function_name}' " + f"| summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)" ) - return process_app_insights_response(response) + result = self._execute_app_insights_query(app_id, invocation_summary_query, "getLast30DaySummary", timespan) + + return process_app_insights_response(result) except Exception as e: handle_raw_exception(e) @@ -214,23 +289,31 @@ def get_traces(self): self.validate_arguments() # Get all arguments - resource_group = self.get_argument_resource_group_name() - container_app = self.get_argument_container_app_name() - revision = self.get_argument_revision_name() - function = self.get_argument_function_name() - timespan = self.get_argument_timespan() - limit = self.get_argument_limit() - - response = self.client.get_function_invocation_traces( - cmd=self.cmd, - resource_group_name=resource_group, - container_app_name=container_app, - revision_name=revision, - function_name=function, - timespan=timespan, - limit=limit + resource_group_name = self.get_argument_resource_group_name() + container_app_name = self.get_argument_container_app_name() + revision_name = self.get_argument_revision_name() + function_name = self.get_argument_function_name() + timespan = self.get_argument_timespan() or "30d" + limit = self.get_argument_limit() or 20 + + # Fetch the app insights resource app id + app_id = self._get_app_insights_id(resource_group_name, container_app_name, revision_name) + + # Use application insights query to get function invocations traces + invocation_traces_query = ( + f"requests | extend functionNameFromCustomDimension = tostring(customDimensions['faas.name']) " + f"| project timestamp, id, operation_Name, success, resultCode, duration, operation_Id, functionNameFromCustomDimension, " + f"cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions['InvocationId']), tostring(customDimensions['faas.invocation_id'])) " + f"| where timestamp > ago({timespan}) " + f"| where cloud_RoleName =~ '{container_app_name}' " + f"| where cloud_RoleInstance contains '{revision_name}' " + f"| where operation_Name =~ '{function_name}' or functionNameFromCustomDimension =~ '{function_name}' " + f"| order by timestamp desc | take {limit} " + f"| project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension " ) - return process_app_insights_response(response) + result = self._execute_app_insights_query(app_id, invocation_traces_query, "getInvocationTraces", timespan) + + return process_app_insights_response(result) except Exception as e: handle_raw_exception(e) From 9b20d748eeaebb4ecdca98059c360dd22755bbed Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Tue, 11 Nov 2025 12:06:34 +0000 Subject: [PATCH 06/15] resolving comments --- .../azext_containerapp/containerapp_functions_decorator.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/containerapp/azext_containerapp/containerapp_functions_decorator.py b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py index 2c44efce130..d8a128b25e8 100644 --- a/src/containerapp/azext_containerapp/containerapp_functions_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py @@ -258,6 +258,7 @@ def get_summary(self): self.validate_arguments() # Get arguments + cmd = self.cmd resource_group_name = self.get_argument_resource_group_name() container_app_name = self.get_argument_container_app_name() revision_name = self.get_argument_revision_name() @@ -277,7 +278,7 @@ def get_summary(self): f"| summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)" ) - result = self._execute_app_insights_query(app_id, invocation_summary_query, "getLast30DaySummary", timespan) + result = self._execute_app_insights_query(app_id, invocation_summary_query, "getLast30DaySummary") return process_app_insights_response(result) except Exception as e: @@ -289,6 +290,7 @@ def get_traces(self): self.validate_arguments() # Get all arguments + cmd = self.cmd resource_group_name = self.get_argument_resource_group_name() container_app_name = self.get_argument_container_app_name() revision_name = self.get_argument_revision_name() @@ -312,7 +314,7 @@ def get_traces(self): f"| project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension " ) - result = self._execute_app_insights_query(app_id, invocation_traces_query, "getInvocationTraces", timespan) + result = self._execute_app_insights_query(app_id, invocation_traces_query, "getInvocationTraces") return process_app_insights_response(result) except Exception as e: From 47ef9ad27ad687d412e8e3083fee6f4bc2ba47c3 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Tue, 11 Nov 2025 12:28:13 +0000 Subject: [PATCH 07/15] fixing style error --- src/containerapp/azext_containerapp/_utils.py | 2 +- .../containerapp_functions_decorator.py | 2 -- .../tests/latest/test_containerapp_function.py | 10 +++++----- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/containerapp/azext_containerapp/_utils.py b/src/containerapp/azext_containerapp/_utils.py index 4efadb1f93f..0ee41dbe4a8 100644 --- a/src/containerapp/azext_containerapp/_utils.py +++ b/src/containerapp/azext_containerapp/_utils.py @@ -879,7 +879,7 @@ def get_random_replica(cmd, resource_group_name, container_app_name, revision_na def execute_function_admin_command(cmd, resource_group_name, name, command, revision_name=None, replica_name=None, container_name=None): from .custom import containerapp_debug - + return containerapp_debug( cmd=cmd, resource_group_name=resource_group_name, diff --git a/src/containerapp/azext_containerapp/containerapp_functions_decorator.py b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py index d8a128b25e8..4ac187936b4 100644 --- a/src/containerapp/azext_containerapp/containerapp_functions_decorator.py +++ b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py @@ -258,7 +258,6 @@ def get_summary(self): self.validate_arguments() # Get arguments - cmd = self.cmd resource_group_name = self.get_argument_resource_group_name() container_app_name = self.get_argument_container_app_name() revision_name = self.get_argument_revision_name() @@ -290,7 +289,6 @@ def get_traces(self): self.validate_arguments() # Get all arguments - cmd = self.cmd resource_group_name = self.get_argument_resource_group_name() container_app_name = self.get_argument_container_app_name() revision_name = self.get_argument_revision_name() diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py index e125e573a81..bb94a224dfe 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -68,7 +68,7 @@ def test_containerapp_function_list_show_basic(self, resource_group): @ResourceGroupPreparer(location="northcentralus") def test_containerapp_function_list_show_error_scenarios(self, resource_group): """Test error scenarios for function list command""" - location = "northcentralusstage" + location = TEST_LOCATION self.cmd('configure --defaults location={}'.format(location)) ca_name = self.create_random_name(prefix='containerapp', length=24) @@ -133,7 +133,7 @@ def test_containerapp_function_list_show_error_scenarios(self, resource_group): @ResourceGroupPreparer(location="northcentralus") def test_containerapp_function_list_show_multirevision_scenarios(self, resource_group): """Test multiple revisions scenarios for function list command""" - location = "northcentralusstage" + location = TEST_LOCATION self.cmd('configure --defaults location={}'.format(location)) env = prepare_containerapp_env_for_app_e2e_tests(self, location=location) @@ -197,8 +197,8 @@ def test_containerapp_function_list_show_multirevision_scenarios(self, resource_ @ResourceGroupPreparer(location="northcentralus") def test_containerapp_function_keys(self, resource_group): """Test function keys show/list/set functionality""" - location = "northcentralus" - functionapp_location = "northcentralusstage" + location = TEST_LOCATION + functionapp_location = TEST_LOCATION storage_account_name = self.create_random_name("storageacc", length=24) funcapp_name = self.create_random_name("functionapp", length=24) image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" @@ -366,7 +366,7 @@ def test_containerapp_function_keys(self, resource_group): def test_containerapp_function_invocations_summary_traces(self, resource_group): """Test function keys show/list/set functionality using connection string and App Insights""" location = TEST_LOCATION - functionapp_location = "northcentralusstage" + functionapp_location = TEST_LOCATION funcapp_name = self.create_random_name("functionapp", length=24) image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" app_insights_name = self.create_random_name("appinsights", length=24) From 025c3be89d2814c2c71f611da2f5d15088fc4c92 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Wed, 12 Nov 2025 10:20:24 +0000 Subject: [PATCH 08/15] tests --- ...p_function_invocations_summary_traces.yaml | 9411 +++++++++-------- .../test_containerapp_function_keys.yaml | 4184 ++++---- ...containerapp_function_list_show_basic.yaml | 2151 ++-- ...pp_function_list_show_error_scenarios.yaml | 3607 ++++--- ...ion_list_show_multirevision_scenarios.yaml | 4334 ++++---- .../latest/test_containerapp_function.py | 36 +- 6 files changed, 12058 insertions(+), 11665 deletions(-) diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml index 9c35f36b9e6..7320b074087 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "northcentralus", "kind": "web", "properties": {"Application_Type": + body: '{"location": "eastus2", "kind": "web", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "IngestionMode": "ApplicationInsights"}}' headers: @@ -13,29 +13,29 @@ interactions: Connection: - keep-alive Content-Length: - - '180' + - '173' Content-Type: - application/json ParameterSetName: - -a --location -g --application-type User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2018-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2018-05-01-preview response: body: - string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"29031918-0000-0400-0000-68ee30f90000\\\"\",\r\n + string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"cd078327-0000-0200-0000-69144c6e0000\\\"\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/appinsights000003\",\r\n \ \"name\": \"appinsights000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n - \ \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n + \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n + \ \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n - \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"dcbd9bb7-2b2d-4849-a6a2-f750218da66a\",\r\n - \ \"ConnectionString\": \"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n - \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-10-14T11:16:02.4204865+00:00\",\r\n + \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"daf3cb3b-461a-48c7-b6a3-a360ec907ea8\",\r\n + \ \"ConnectionString\": \"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n + \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-11-12T08:59:21.7594362+00:00\",\r\n \ \"TenantId\": \"cabb33e6-3c92-4907-9d7c-80c7ca9ac327\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": - 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_a3e40e40-d57f-4509-853f-43669d7aedab_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n + 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_08b5c44d-d8bc-47b7-8427-987921b829d6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}" @@ -45,11 +45,11 @@ interactions: cache-control: - no-cache content-length: - - '1566' + - '1545' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:16:08 GMT + - Wed, 12 Nov 2025 08:59:26 GMT expires: - '-1' pragma: @@ -63,13 +63,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8c34d11b-cc1f-4a64-8fda-52b17930bb0f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/01544367-081a-47e8-9e82-8ac2dcc09296 + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 0B2CDD0FBD3C4E63A55327624B49D3D9 Ref B: JKT201051407052 Ref C: 2025-10-14T11:16:00Z' + - 'Ref A: 9CD41BBC81704747A47EA94668F31B3B Ref B: PNQ231110908060 Ref C: 2025-11-12T08:59:17Z' x-powered-by: - ASP.NET status: @@ -89,23 +89,23 @@ interactions: ParameterSetName: - -a -g --query -o User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2020-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2020-02-02-preview response: body: - string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"29031918-0000-0400-0000-68ee30f90000\\\"\",\r\n + string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"cd078327-0000-0200-0000-69144c6e0000\\\"\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/appinsights000003\",\r\n \ \"name\": \"appinsights000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n - \ \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": - {\r\n \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n + \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n + \ \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n - \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"dcbd9bb7-2b2d-4849-a6a2-f750218da66a\",\r\n - \ \"ConnectionString\": \"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab\",\r\n - \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-10-14T11:16:02.4204865+00:00\",\r\n + \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"daf3cb3b-461a-48c7-b6a3-a360ec907ea8\",\r\n + \ \"ConnectionString\": \"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n + \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-11-12T08:59:21.7594362+00:00\",\r\n \ \"TenantId\": \"cabb33e6-3c92-4907-9d7c-80c7ca9ac327\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": - 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_a3e40e40-d57f-4509-853f-43669d7aedab_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n + 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_08b5c44d-d8bc-47b7-8427-987921b829d6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}" @@ -115,11 +115,11 @@ interactions: cache-control: - no-cache content-length: - - '1566' + - '1545' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:16:30 GMT + - Wed, 12 Nov 2025 08:59:47 GMT expires: - '-1' pragma: @@ -132,10 +132,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: A673584573EF4D96AF6ECD914E2A38DC Ref B: JKT201051407029 Ref C: 2025-10-14T11:16:30Z' + - 'Ref A: 952414CCBC954AE7B0BADC0CEEB6C093 Ref B: PNQ231110906060 Ref C: 2025-11-12T08:59:47Z' x-powered-by: - ASP.NET status: @@ -155,304 +155,311 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -460,11 +467,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:16:34 GMT + - Wed, 12 Nov 2025 08:59:49 GMT expires: - '-1' pragma: @@ -475,10 +482,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 16EF6A18984749A593E72741E5122AC7 Ref B: JKT201051406040 Ref C: 2025-10-14T11:16:34Z' + - 'Ref A: 0605D250414B4A47AED5E190FA800D2C Ref B: PNQ231110906060 Ref C: 2025-11-12T08:59:49Z' status: code: 200 message: OK @@ -496,28 +503,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1810' + - '1732' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:16:36 GMT + - Wed, 12 Nov 2025 08:59:49 GMT expires: - '-1' pragma: @@ -530,10 +537,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F138C59943B145BDA4111BA14C85EC1A Ref B: JKT201051407031 Ref C: 2025-10-14T11:16:36Z' + - 'Ref A: D828E329DA8A4207BD7749620116B18C Ref B: PNQ231110908052 Ref C: 2025-11-12T08:59:50Z' x-powered-by: - ASP.NET status: @@ -553,304 +560,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -858,11 +872,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:18 GMT + - Wed, 12 Nov 2025 09:01:31 GMT expires: - '-1' pragma: @@ -873,10 +887,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 8F2CFA6CD28748EEAEC04A03C9151736 Ref B: JKT201051406025 Ref C: 2025-10-14T11:18:18Z' + - 'Ref A: 85EEBA4A4C1F42019F42ABD71B47CD0B Ref B: PNQ231110906060 Ref C: 2025-11-12T09:01:31Z' status: code: 200 message: OK @@ -894,28 +908,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1810' + - '1732' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:21 GMT + - Wed, 12 Nov 2025 09:01:33 GMT expires: - '-1' pragma: @@ -928,10 +942,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 8DF2AC4CA99447CB9753CFD55B88E94D Ref B: JKT201051407025 Ref C: 2025-10-14T11:18:20Z' + - 'Ref A: F936F84C027A4E14978A7DDCF6655050 Ref B: PNQ231110907042 Ref C: 2025-11-12T09:01:32Z' x-powered-by: - ASP.NET status: @@ -951,304 +965,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1256,11 +1277,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:22 GMT + - Wed, 12 Nov 2025 09:01:33 GMT expires: - '-1' pragma: @@ -1271,16 +1292,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 842A2E0421FB4312AD3EE8E5ACE78E22 Ref B: JKT201051406042 Ref C: 2025-10-14T11:18:22Z' + - 'Ref A: D9D037A57D684307A271A6FFFAB6FE6C Ref B: PNQ231110908031 Ref C: 2025-11-12T09:01:33Z' status: code: 200 message: OK - request: - body: '{"location": "Central US EUAP", "identity": null, "properties": {"environmentId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage", + body: '{"location": "East US 2", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2", "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": @@ -1300,36 +1321,36 @@ interactions: Connection: - keep-alive Content-Length: - - '990' + - '960' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 cache-control: - no-cache content-length: - - '1969' + - '1914' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:25 GMT + - Wed, 12 Nov 2025 09:01:35 GMT expires: - '-1' pragma: @@ -1343,13 +1364,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/81358b8f-bf82-4a72-b67b-9e754bd04316 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ff03e86d-59f9-446a-9108-c4e1a87142d9 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: CDB8DBD4BB5D4197911CF5F03F9AD5CC Ref B: JKT201051406040 Ref C: 2025-10-14T11:18:24Z' + - 'Ref A: E25F8A1AB3AF4688ADB3F8516D83C96F Ref B: PNQ231110906062 Ref C: 2025-11-12T09:01:34Z' x-powered-by: - ASP.NET status: @@ -1369,27 +1388,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:27 GMT + - Wed, 12 Nov 2025 09:01:36 GMT expires: - '-1' pragma: @@ -1403,11 +1422,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ec139c25-c071-4885-bc8c-11b86d4310b1 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/eb5fa3ca-b985-4fe4-93b9-49780b397c8f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6AEF3A65D3184829A526327AD24B3D00 Ref B: JKT201051406025 Ref C: 2025-10-14T11:18:27Z' + - 'Ref A: B7F10197A7E94D9BB45EC0A2F8734CE6 Ref B: PNQ231110909062 Ref C: 2025-11-12T09:01:35Z' x-powered-by: - ASP.NET status: @@ -1427,27 +1446,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:31 GMT + - Wed, 12 Nov 2025 09:01:38 GMT expires: - '-1' pragma: @@ -1461,11 +1480,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/acb260bc-f667-40b0-b491-11d2572e852b - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/ab9ebfd1-e17c-442a-9161-4e23effa5b66 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6C75DDB202ED413E9520F22C336704CE Ref B: JKT201051407036 Ref C: 2025-10-14T11:18:30Z' + - 'Ref A: 1B295018DA66455B973C3D295105BD5F Ref B: PNQ231110909042 Ref C: 2025-11-12T09:01:38Z' x-powered-by: - ASP.NET status: @@ -1485,27 +1504,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:34 GMT + - Wed, 12 Nov 2025 09:01:41 GMT expires: - '-1' pragma: @@ -1519,11 +1538,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9c36648f-6664-4bc7-9b7e-1f997d5dcd74 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/d320dbee-bd0a-468d-83dd-3cdbbd3a5383 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' x-msedge-ref: - - 'Ref A: 646C73B296324B37AF83A779A6B7BA66 Ref B: JKT201051407042 Ref C: 2025-10-14T11:18:33Z' + - 'Ref A: C10530F8AD39410998CDEF0ACFABC3E7 Ref B: PNQ231110908029 Ref C: 2025-11-12T09:01:41Z' x-powered-by: - ASP.NET status: @@ -1543,27 +1562,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"InProgress","startTime":"2025-10-14T11:18:26.4708733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:37 GMT + - Wed, 12 Nov 2025 09:01:43 GMT expires: - '-1' pragma: @@ -1577,11 +1596,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/bcf4b48f-0ae1-4ddd-8872-21e65584e131 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/23ce7a5a-e924-4913-9cb2-88c34b65a105 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3D3C68A7020B423AA9978BD2DF687622 Ref B: JKT201051407042 Ref C: 2025-10-14T11:18:37Z' + - 'Ref A: D6B7D7291212485DAA46361675C7A956 Ref B: PNQ231110907025 Ref C: 2025-11-12T09:01:44Z' x-powered-by: - ASP.NET status: @@ -1601,27 +1620,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375066071993&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=REM5NkfRyZQJiUfZteK0mWzS24Vz9MWLwus5BT0FBXCXNQvmUWv6H2D4i5mGs_HqnZ7LorJ3etfCXEiwbS_Oj3DOB-kgAsqCrbtNQD3T62JDWjPhBH5oanJizHpCP1ifYNev7-sdfrdUwGHwj_i17gWwft2UVceF7CVzU0v2rZTIdaq8kOu4mlQAnbVuPC2ab2LRqaLgLYpYOktoFp00DNA0Qx2prhJgwjgVbodg5rAurWWY-yUaJ6W6umO6yCUrpgMt3SgQE7YvFxkQZuxMqVNZxGGyTC5Iq-A8Q273aN-pRZr1IjxUduEhRZ9qsUpISHRbsCX9wrMvZ7x6ovf3Zg&h=T6KzgpW0BFyPdnwifloqpFTk6OKY8ky1Xv4RvKI4fGI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/efeef950-043e-4d68-b57e-5a722b2197c0","name":"efeef950-043e-4d68-b57e-5a722b2197c0","status":"Succeeded","startTime":"2025-10-14T11:18:26.4708733"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"Succeeded","startTime":"2025-11-12T09:01:35.2369858"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '284' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:39 GMT + - Wed, 12 Nov 2025 09:01:47 GMT expires: - '-1' pragma: @@ -1635,11 +1654,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b61d6d4a-2830-4fac-abac-752e861c2ad4 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/a109f4d8-5814-4b1e-ad3f-6c318606cf89 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 62857A0856AC4575B8D81E620C12432F Ref B: JKT201051406040 Ref C: 2025-10-14T11:18:40Z' + - 'Ref A: DC21C097370549E6BD9DB2FF58C876F9 Ref B: PNQ231110908042 Ref C: 2025-11-12T09:01:46Z' x-powered-by: - ASP.NET status: @@ -1659,28 +1678,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"containerapp000004--41fyopd","latestReadyRevisionName":"containerapp000004--41fyopd","latestRevisionFqdn":"containerapp000004--41fyopd.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"containerapp000004--ec84vxt","latestReadyRevisionName":"containerapp000004--ec84vxt","latestRevisionFqdn":"containerapp000004--ec84vxt.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2656' + - '2583' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:41 GMT + - Wed, 12 Nov 2025 09:01:47 GMT expires: - '-1' pragma: @@ -1691,329 +1710,336 @@ interactions: - Accept-Encoding x-cache: - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-throttling-version: - - v2 - x-msedge-ref: - - 'Ref A: 9308FA6CB18545028504825FB023776F Ref B: JKT201051407054 Ref C: 2025-10-14T11:18:41Z' - 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 --kind --env-vars - User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6072CE903983487591F2C4FF689AB634 Ref B: PNQ231110908023 Ref C: 2025-11-12T09:01:47Z' + 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 --kind --env-vars + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -2021,11 +2047,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:42 GMT + - Wed, 12 Nov 2025 09:01:49 GMT expires: - '-1' pragma: @@ -2036,10 +2062,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 4CDBB4C1266F45CAB16C225CF0E127FD Ref B: JKT201051406040 Ref C: 2025-10-14T11:18:43Z' + - 'Ref A: 09EA03B3E1984D78A1BEBE351F38597A Ref B: PNQ231110906034 Ref C: 2025-11-12T09:01:49Z' status: code: 200 message: OK @@ -2057,28 +2083,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1810' + - '1732' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:45 GMT + - Wed, 12 Nov 2025 09:01:50 GMT expires: - '-1' pragma: @@ -2091,10 +2117,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F653ED2F94DE436CAF4DA81F97EFD610 Ref B: JKT201051407034 Ref C: 2025-10-14T11:18:44Z' + - 'Ref A: B1276FED72AB4D0198CB49878624A70D Ref B: PNQ231110909040 Ref C: 2025-11-12T09:01:50Z' x-powered-by: - ASP.NET status: @@ -2114,304 +2140,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -2419,11 +2452,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:47 GMT + - Wed, 12 Nov 2025 09:01:50 GMT expires: - '-1' pragma: @@ -2434,16 +2467,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F32A00D151DE48829F141F9F744BF64D Ref B: JKT201051407034 Ref C: 2025-10-14T11:18:45Z' + - 'Ref A: 5C927C9A535A4927BADF619B06383EE1 Ref B: PNQ231110908025 Ref C: 2025-11-12T09:01:51Z' status: code: 200 message: OK - request: - body: '{"location": "Central US EUAP", "identity": null, "properties": {"environmentId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage", + body: '{"location": "East US 2", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2", "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": @@ -2451,7 +2484,7 @@ interactions: null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0", "name": "functionapp000002", "command": null, "args": null, "env": [{"name": "APPLICATIONINSIGHTS_CONNECTION_STRING", - "value": "InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}], + "value": "InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}], "resources": null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null, "kind": "functionapp"}' @@ -2465,36 +2498,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1328' + - '1284' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI cache-control: - no-cache content-length: - - '2311' + - '2242' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:49 GMT + - Wed, 12 Nov 2025 09:01:56 GMT expires: - '-1' pragma: @@ -2508,13 +2541,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/57fbf9bb-3f57-4db0-b571-db788abd33b6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/b51a5e68-60ff-4b63-a791-2ee5e9483dbf x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 758036216C374AB69D2A948DE3FD697A Ref B: JKT201051407036 Ref C: 2025-10-14T11:18:48Z' + - 'Ref A: 490501A36EA5488FA40BFA5B29B84547 Ref B: PNQ231110907029 Ref C: 2025-11-12T09:01:52Z' x-powered-by: - ASP.NET status: @@ -2534,27 +2565,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:51 GMT + - Wed, 12 Nov 2025 09:01:57 GMT expires: - '-1' pragma: @@ -2568,11 +2599,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/99c65959-e622-4bfa-b2e5-867d61d27e48 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/860cfb68-962c-4e8e-9d7f-234014dd10d3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: DEBF103107444CB68D0153EA7D6C0732 Ref B: JKT201051407029 Ref C: 2025-10-14T11:18:50Z' + - 'Ref A: 5D131B0B43CE4716A005391B41CCE48C Ref B: PNQ231110909054 Ref C: 2025-11-12T09:01:56Z' x-powered-by: - ASP.NET status: @@ -2592,27 +2623,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:53 GMT + - Wed, 12 Nov 2025 09:02:00 GMT expires: - '-1' pragma: @@ -2626,11 +2657,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3372cee0-7e9c-49ec-bba9-0fd376941c06 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e3c51743-71bf-4af8-a442-1a7e548831cb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 4C96F043179A4C9BB3E2061640BA6EDA Ref B: JKT201051406029 Ref C: 2025-10-14T11:18:53Z' + - 'Ref A: 566F6BB719D840C18DD400E1E8C25ABE Ref B: PNQ231110906025 Ref C: 2025-11-12T09:02:00Z' x-powered-by: - ASP.NET status: @@ -2650,27 +2681,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:18:57 GMT + - Wed, 12 Nov 2025 09:02:03 GMT expires: - '-1' pragma: @@ -2684,11 +2715,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0db5813a-d4c4-4f99-bcf0-870a60bda20d - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/abcd33bb-377a-4eca-8917-a93fce38d9dd + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 14E0B3F6B34C4285A7EB39DF27AE28AA Ref B: JKT201051406025 Ref C: 2025-10-14T11:18:57Z' + - 'Ref A: C0651EEFBA48460D84B4B0478C8F7596 Ref B: PNQ231110906062 Ref C: 2025-11-12T09:02:03Z' x-powered-by: - ASP.NET status: @@ -2708,27 +2739,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"InProgress","startTime":"2025-10-14T11:18:49.5730122"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:00 GMT + - Wed, 12 Nov 2025 09:02:05 GMT expires: - '-1' pragma: @@ -2742,11 +2773,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8daf93d3-f270-45a5-8e01-170cdcf4c00a - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/9a7574e9-9bd7-4135-81be-820c7cc552b7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: C0A7B3E552AA4832BDFAEAA544706CD0 Ref B: JKT201051406023 Ref C: 2025-10-14T11:19:00Z' + - 'Ref A: 2D032BFBB55344F6ADFD5FBCF1765419 Ref B: PNQ231110908031 Ref C: 2025-11-12T09:02:05Z' x-powered-by: - ASP.NET status: @@ -2766,27 +2797,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960375297018190&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=DZZ8UMrMUrroW4XdJNd_eSL-ica2qjnLR4zz0VOa9pjrGFhA8beLTJUJI0n5ot_Rz5-qYFibbvin1Ek8lGPXfSLL7GWV4QkCFHFe1oOCAF3nPj4claR8cuAmbiPiCxAmFoV_1TtiMmvaW8sQ_wcxgnLjOtCVRXdfI3qWYHeUBuWzrSV38QLBKZ4XMSwSmwMx4rLOopSB8JimlE-uVWzag6WcINvqMYofJ715wMgoOT8_ZXimLqFkFxexdKUxL4Ploda948NcT1AaTc_LnisKKy9q3dqeUBX7VmLJXnLDh8Z-PEzmaDYnEnAjVRoTS5PILT9Ap4P3lKtSrauGNevggQ&h=8rPxT2bkvTpRGGyiwBW5maNmWKDR05oh69CVhXnY38g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/1cb6121d-b633-40ff-a804-c9811657c90a","name":"1cb6121d-b633-40ff-a804-c9811657c90a","status":"Succeeded","startTime":"2025-10-14T11:18:49.5730122"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"Succeeded","startTime":"2025-11-12T09:01:56.3170219"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '284' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:03 GMT + - Wed, 12 Nov 2025 09:02:10 GMT expires: - '-1' pragma: @@ -2800,11 +2831,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3eea599d-ff4a-4a61-98ce-9ae75f6d1d5f - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/6907f425-7e3b-4a05-a13e-a5b169b6f5e1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 62217C44698D4E9FAA959FC8A679BC95 Ref B: JKT201051407052 Ref C: 2025-10-14T11:19:03Z' + - 'Ref A: 2D68DD536B434A64B5D16F53646452BC Ref B: PNQ231110909054 Ref C: 2025-11-12T09:02:08Z' x-powered-by: - ASP.NET status: @@ -2824,28 +2855,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:05 GMT + - Wed, 12 Nov 2025 09:02:11 GMT expires: - '-1' pragma: @@ -2858,10 +2889,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 7D6B7D664816481E81FFB85409259DB7 Ref B: JKT201051406023 Ref C: 2025-10-14T11:19:05Z' + - 'Ref A: 37D1DE3699EA4BDF85498E82893E3F26 Ref B: PNQ231110909025 Ref C: 2025-11-12T09:02:10Z' x-powered-by: - ASP.NET status: @@ -2881,28 +2912,29 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating","runningStateDetails":"The - TargetPort 80 does not match the listening port 39485."}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating","runningStateDetails":"The + TargetPort 80 does not match the listening port 44683. The TargetPort 80 does + not match any of the listening ports: [46827 44683]."}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1365' + - '1421' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:07 GMT + - Wed, 12 Nov 2025 09:02:12 GMT expires: - '-1' pragma: @@ -2916,11 +2948,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/166a668a-609e-41c5-a8c1-08f5421919e3 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1a36f94c-f31e-4622-b35c-a73014036b4d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 031A48CFEB114B4691D4ABF5B7F6E4CD Ref B: JKT201051406060 Ref C: 2025-10-14T11:19:06Z' + - 'Ref A: D3F91CD32B5A4D7395010D06C3007C3B Ref B: PNQ231110909052 Ref C: 2025-11-12T09:02:12Z' x-powered-by: - ASP.NET status: @@ -2940,27 +2972,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1354' + - '1334' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:19 GMT + - Wed, 12 Nov 2025 09:02:24 GMT expires: - '-1' pragma: @@ -2974,11 +3006,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/67d01f58-4c2e-4f0f-bad9-6fcd7181dd17 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/23096420-61a5-4b19-b6ef-fc11a7e2da47 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 639AB13625AC490A93AF264B80BD9E8F Ref B: JKT201051406054 Ref C: 2025-10-14T11:19:19Z' + - 'Ref A: B1BFE304F2824DB08E5F4397EAD28AC6 Ref B: PNQ231110906052 Ref C: 2025-11-12T09:02:23Z' x-powered-by: - ASP.NET status: @@ -2998,28 +3030,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:21 GMT + - Wed, 12 Nov 2025 09:02:25 GMT expires: - '-1' pragma: @@ -3032,10 +3064,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 211C09A78C6E4321A3E79412F4FE3789 Ref B: JKT201051407052 Ref C: 2025-10-14T11:19:21Z' + - 'Ref A: 1297091863384B27B1E9227D7DB65E95 Ref B: PNQ231110906054 Ref C: 2025-11-12T09:02:25Z' x-powered-by: - ASP.NET status: @@ -3055,29 +3087,29 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas?api-version=2025-02-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn","name":"functionapp000002--gto25e2-585fbf94b-xdsrn","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T11:18:56Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000002","containerId":"containerd://a9c3d21b86163dcbc2d203b6fc6f8b30ef09524eecae649c4ead61460daf34a0","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 11:19:04 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/functionapp000002/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/functionapp000002/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/debug?targetContainer=functionapp000002"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://5c93e14b21ab5f061e6cea5f97365bef37b4d9df27cf54674158ab33c4cc3526","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--gto25e2/replicas/functionapp000002--gto25e2-585fbf94b-xdsrn/debug?targetContainer=metadata-check"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd","name":"functionapp000002--qp749le-7784f8b4b9-l68gd","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T09:02:02Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000002","containerId":"containerd://c07062f3f7b4b53196dab483583583892390cd6c4527ac21770daa5c2b4f2488","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 9:02:08 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/functionapp000002/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/functionapp000002/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/debug?targetContainer=functionapp000002"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://f5f4d8f98287eb40e18e0b2d1ae1f80ad109e86aef5ad5e691124ee689d11758","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/debug?targetContainer=metadata-check"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2854' + - '2825' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:22 GMT + - Wed, 12 Nov 2025 09:02:25 GMT expires: - '-1' pragma: @@ -3091,328 +3123,335 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ddfe64f3-92e8-4b71-a33f-de29c8bbc3e7 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7ab20cd2-b147-4aa0-b100-11f541b028eb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: FD6BFE40A8BF4B29A2E885A6CEAECCED Ref B: JKT201051406054 Ref C: 2025-10-14T11:19:22Z' + - 'Ref A: C7C0EFBE5E6A4BDBACA28507C25F0A4D Ref B: PNQ231110909029 Ref C: 2025-11-12T09:02:25Z' 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: - - --resource-group --name --query --output - User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --query --output + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -3420,11 +3459,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:25 GMT + - Wed, 12 Nov 2025 09:02:27 GMT expires: - '-1' pragma: @@ -3435,10 +3474,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 2A503890157C45ABB88D2EC7133BE839 Ref B: JKT201051407060 Ref C: 2025-10-14T11:19:24Z' + - 'Ref A: C964F05C64C6415988D0F75545BFA744 Ref B: PNQ231110906031 Ref C: 2025-11-12T09:02:27Z' status: code: 200 message: OK @@ -3456,28 +3495,28 @@ interactions: ParameterSetName: - --resource-group --name --query --output User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:27 GMT + - Wed, 12 Nov 2025 09:02:27 GMT expires: - '-1' pragma: @@ -3490,10 +3529,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 40D17C1BF9354C79B42D40708B067800 Ref B: JKT201051406036 Ref C: 2025-10-14T11:19:26Z' + - 'Ref A: BCD62F5C5F06481BA2A750FC84DC767D Ref B: PNQ231110906023 Ref C: 2025-11-12T09:02:27Z' x-powered-by: - ASP.NET status: @@ -3513,7 +3552,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3521,9 +3560,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:27 GMT + - Wed, 12 Nov 2025 09:02:28 GMT request-context: - - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 server: - Kestrel transfer-encoding: @@ -3545,7 +3584,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3553,9 +3592,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:28 GMT + - Wed, 12 Nov 2025 09:02:30 GMT request-context: - - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 server: - Kestrel transfer-encoding: @@ -3577,7 +3616,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3585,9 +3624,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:29 GMT + - Wed, 12 Nov 2025 09:02:31 GMT request-context: - - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 server: - Kestrel transfer-encoding: @@ -3609,7 +3648,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3617,9 +3656,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:30 GMT + - Wed, 12 Nov 2025 09:02:32 GMT request-context: - - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 server: - Kestrel transfer-encoding: @@ -3641,7 +3680,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3649,9 +3688,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:31 GMT + - Wed, 12 Nov 2025 09:02:33 GMT request-context: - - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 server: - Kestrel transfer-encoding: @@ -3673,7 +3712,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3681,9 +3720,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:32 GMT + - Wed, 12 Nov 2025 09:02:33 GMT request-context: - - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 server: - Kestrel transfer-encoding: @@ -3705,7 +3744,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.graycoast-0c716230.centraluseuap.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3713,9 +3752,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 11:19:33 GMT + - Wed, 12 Nov 2025 09:02:34 GMT request-context: - - appId=cid-v1:a3e40e40-d57f-4509-853f-43669d7aedab + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 server: - Kestrel transfer-encoding: @@ -3737,304 +3776,311 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -4042,11 +4088,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:36 GMT + - Wed, 12 Nov 2025 09:03:36 GMT expires: - '-1' pragma: @@ -4057,10 +4103,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 0FBAD32EA14E4598978192620504FC90 Ref B: JKT201051407062 Ref C: 2025-10-14T11:20:35Z' + - 'Ref A: 6AECC871579F48EDB087E84911B392F0 Ref B: PNQ231110908060 Ref C: 2025-11-12T09:03:36Z' status: code: 200 message: OK @@ -4078,28 +4124,28 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:37 GMT + - Wed, 12 Nov 2025 09:03:36 GMT expires: - '-1' pragma: @@ -4112,10 +4158,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 53CCC77A03F4452C8AA025B23F8E8014 Ref B: JKT201051406040 Ref C: 2025-10-14T11:20:37Z' + - 'Ref A: 91865F228AC0454CBA60073664A3A77A Ref B: PNQ231110907029 Ref C: 2025-11-12T09:03:36Z' x-powered-by: - ASP.NET status: @@ -4135,28 +4181,28 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:38 GMT + - Wed, 12 Nov 2025 09:03:36 GMT expires: - '-1' pragma: @@ -4169,10 +4215,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 634BB0AD8F454624A80E646B4C338712 Ref B: JKT201051407042 Ref C: 2025-10-14T11:20:38Z' + - 'Ref A: 9EC562E2BC0D41F989C19B1C071EDF7F Ref B: PNQ231110906034 Ref C: 2025-11-12T09:03:37Z' x-powered-by: - ASP.NET status: @@ -4192,27 +4238,27 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1371' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:40 GMT + - Wed, 12 Nov 2025 09:03:38 GMT expires: - '-1' pragma: @@ -4226,11 +4272,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/100f3ad6-e1c7-4c10-910c-a5734e1b7811 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/f1de5e82-db5f-4c9c-83e4-4d3abd5bbe3c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1BC510107ADE4E6987836C53F64FA39F Ref B: JKT201051407029 Ref C: 2025-10-14T11:20:39Z' + - 'Ref A: 22E6F1EA88464BBCBA278428F6210478 Ref B: PNQ231110907052 Ref C: 2025-11-12T09:03:37Z' x-powered-by: - ASP.NET status: @@ -4239,7 +4285,7 @@ interactions: - request: body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) | where timestamp >= ago(30d) | where cloud_RoleName =~ ''functionapp000002'' - | where cloud_RoleInstance contains ''functionapp000002--gto25e2'' | where operation_Name + | where cloud_RoleInstance contains ''functionapp000002--qp749le'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)", "timespan": "P30D"}' @@ -4259,10 +4305,10 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getLast30DaySummary + uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getLast30DaySummary response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"SuccessCount","type":"long"},{"name":"ErrorCount","type":"long"}],"rows":[[0,0]]}]}' @@ -4278,330 +4324,337 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:49 GMT + - Wed, 12 Nov 2025 09:03:45 GMT strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - via: - - 1.1 draft-oms-54d7c4f669-75w9d - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp function invocations summary - Connection: - - keep-alive - ParameterSetName: - - -n -g --function-name --timespan - User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-f75f4b59c-bjdjm + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -4609,11 +4662,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:49 GMT + - Wed, 12 Nov 2025 09:03:46 GMT expires: - '-1' pragma: @@ -4624,10 +4677,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 027C8B2DA37F4037A24264DA84C74F8E Ref B: JKT201051407042 Ref C: 2025-10-14T11:20:50Z' + - 'Ref A: DBC7FCCAB9754151B341ACC6BF200388 Ref B: PNQ231110909040 Ref C: 2025-11-12T09:03:46Z' status: code: 200 message: OK @@ -4645,28 +4698,28 @@ interactions: ParameterSetName: - -n -g --function-name --timespan User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:51 GMT + - Wed, 12 Nov 2025 09:03:47 GMT expires: - '-1' pragma: @@ -4679,10 +4732,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3C941D435076472AB67B3A4EC370CFD8 Ref B: JKT201051406052 Ref C: 2025-10-14T11:20:51Z' + - 'Ref A: D2E79BF7FBA04FD5BEF961D37F20EEE9 Ref B: PNQ231110909036 Ref C: 2025-11-12T09:03:47Z' x-powered-by: - ASP.NET status: @@ -4702,28 +4755,28 @@ interactions: ParameterSetName: - -n -g --function-name --timespan User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:52 GMT + - Wed, 12 Nov 2025 09:03:47 GMT expires: - '-1' pragma: @@ -4736,10 +4789,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: C2B05D3BAE9D4F2389B0E5FE7C263DB4 Ref B: JKT201051406052 Ref C: 2025-10-14T11:20:52Z' + - 'Ref A: 9E3AC3DE277E4CB38D6B75442EA8EB2D Ref B: PNQ231110907029 Ref C: 2025-11-12T09:03:48Z' x-powered-by: - ASP.NET status: @@ -4759,27 +4812,27 @@ interactions: ParameterSetName: - -n -g --function-name --timespan User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1371' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:54 GMT + - Wed, 12 Nov 2025 09:03:48 GMT expires: - '-1' pragma: @@ -4793,11 +4846,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/05c06aa5-46be-4588-a1d3-63d655c3f537 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/8281c177-b4e2-4d87-bc88-76da9405fdba + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 4E89688391674B85A32E95255F06515E Ref B: JKT201051407060 Ref C: 2025-10-14T11:20:53Z' + - 'Ref A: 5F7C988C13074E72AB9508E3B63526C4 Ref B: PNQ231110909023 Ref C: 2025-11-12T09:03:48Z' x-powered-by: - ASP.NET status: @@ -4806,7 +4859,7 @@ interactions: - request: body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) | where timestamp >= ago(5h) | where cloud_RoleName =~ ''functionapp000002'' - | where cloud_RoleInstance contains ''functionapp000002--gto25e2'' | where operation_Name + | where cloud_RoleInstance contains ''functionapp000002--qp749le'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)", "timespan": "P30D"}' @@ -4826,10 +4879,10 @@ interactions: ParameterSetName: - -n -g --function-name --timespan User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getLast30DaySummary + uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getLast30DaySummary response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"SuccessCount","type":"long"},{"name":"ErrorCount","type":"long"}],"rows":[[0,0]]}]}' @@ -4845,13 +4898,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:58 GMT + - Wed, 12 Nov 2025 09:03:52 GMT strict-transport-security: - max-age=31536000; includeSubDomains vary: - Accept-Encoding via: - - 1.1 draft-oms-54d7c4f669-vzlkw + - 1.1 draft-oms-f75f4b59c-gss22 x-content-type-options: - nosniff status: @@ -4871,304 +4924,311 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -5176,11 +5236,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:20:59 GMT + - Wed, 12 Nov 2025 09:03:53 GMT expires: - '-1' pragma: @@ -5191,10 +5251,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: A8319AB6E3C041FBBF0E01A426D8286B Ref B: JKT201051407034 Ref C: 2025-10-14T11:20:59Z' + - 'Ref A: 411D74EE0483459CAE25A8AB62AF9DB5 Ref B: PNQ231110906052 Ref C: 2025-11-12T09:03:52Z' status: code: 200 message: OK @@ -5212,28 +5272,28 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"containerapp000004--41fyopd","latestReadyRevisionName":"containerapp000004--41fyopd","latestRevisionFqdn":"containerapp000004--41fyopd.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"containerapp000004--ec84vxt","latestReadyRevisionName":"containerapp000004--ec84vxt","latestRevisionFqdn":"containerapp000004--ec84vxt.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2656' + - '2583' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:01 GMT + - Wed, 12 Nov 2025 09:03:53 GMT expires: - '-1' pragma: @@ -5246,327 +5306,334 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 727B9A3EDAEA42F58C3A4E2993EABFD1 Ref B: JKT201051406034 Ref C: 2025-10-14T11:21:00Z' + - 'Ref A: 57D14086D6344BDA8DB5F6E17002493F Ref B: PNQ231110909054 Ref C: 2025-11-12T09:03:53Z' x-powered-by: - ASP.NET status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp function invocations summary - Connection: - - keep-alive - ParameterSetName: - - -n -g --function-name - User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations summary + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -5574,11 +5641,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:03 GMT + - Wed, 12 Nov 2025 09:03:54 GMT expires: - '-1' pragma: @@ -5589,10 +5656,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 8F2F0DD46E9343429AB25D8D6348259A Ref B: JKT201051406034 Ref C: 2025-10-14T11:21:02Z' + - 'Ref A: B56D44D91BDF4A7E8106083576B0308D Ref B: PNQ231110909025 Ref C: 2025-11-12T09:03:54Z' status: code: 200 message: OK @@ -5610,10 +5677,10 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/non-existent-app'' @@ -5627,7 +5694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:04 GMT + - Wed, 12 Nov 2025 09:03:55 GMT expires: - '-1' pragma: @@ -5641,7 +5708,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 8D2DDA9337284437944591DA79E69F94 Ref B: JKT201051406031 Ref C: 2025-10-14T11:21:04Z' + - 'Ref A: 6E97DC74D3204C799E179AAE6FAB96B9 Ref B: PNQ231110907042 Ref C: 2025-11-12T09:03:55Z' status: code: 404 message: Not Found @@ -5659,304 +5726,311 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -5964,11 +6038,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:06 GMT + - Wed, 12 Nov 2025 09:03:55 GMT expires: - '-1' pragma: @@ -5979,10 +6053,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 46F3D597111D4E588057F537796006FA Ref B: JKT201051407031 Ref C: 2025-10-14T11:21:06Z' + - 'Ref A: 9E863C4611E84B0EAD776350B68D8DCB Ref B: PNQ231110908040 Ref C: 2025-11-12T09:03:56Z' status: code: 200 message: OK @@ -6000,28 +6074,28 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:08 GMT + - Wed, 12 Nov 2025 09:03:56 GMT expires: - '-1' pragma: @@ -6034,10 +6108,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 137046CF9EDB47D494CF3F9A5D3270D0 Ref B: JKT201051407031 Ref C: 2025-10-14T11:21:07Z' + - 'Ref A: BDCE3D27B42044109AE1A7D640F0EA1B Ref B: PNQ231110907062 Ref C: 2025-11-12T09:03:56Z' x-powered-by: - ASP.NET status: @@ -6057,28 +6131,28 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:09 GMT + - Wed, 12 Nov 2025 09:03:57 GMT expires: - '-1' pragma: @@ -6091,10 +6165,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: DD7D2E9D46794C169933B9A80B3EE055 Ref B: JKT201051406052 Ref C: 2025-10-14T11:21:09Z' + - 'Ref A: 223C984C238D45FBAB4979A4B84316D4 Ref B: PNQ231110909042 Ref C: 2025-11-12T09:03:57Z' x-powered-by: - ASP.NET status: @@ -6114,27 +6188,27 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1371' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:12 GMT + - Wed, 12 Nov 2025 09:03:58 GMT expires: - '-1' pragma: @@ -6148,11 +6222,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/989d61d6-7f5d-4c82-8768-2fc6904e0448 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b04121ef-17a9-46b1-bb35-234a8c3f274a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3D0B8FD5D0D948F4AD60351520ED4F53 Ref B: JKT201051406042 Ref C: 2025-10-14T11:21:10Z' + - 'Ref A: 1868EF6BC7B74223A7FA9644E200D7B4 Ref B: PNQ231110906062 Ref C: 2025-11-12T09:03:58Z' x-powered-by: - ASP.NET status: @@ -6164,7 +6238,7 @@ interactions: functionNameFromCustomDimension, cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions[''InvocationId'']), tostring(customDimensions[''faas.invocation_id''])) | where timestamp > ago(30d) | where cloud_RoleName =~ ''functionapp000002'' | where cloud_RoleInstance contains - ''functionapp000002--gto25e2'' | where operation_Name =~ ''HttpExample'' or + ''functionapp000002--qp749le'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | order by timestamp desc | take 20 | project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension @@ -6185,10 +6259,10 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getInvocationTraces + uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getInvocationTraces response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"timestamp","type":"datetime"},{"name":"success","type":"string"},{"name":"resultCode","type":"string"},{"name":"durationInMilliSeconds","type":"real"},{"name":"invocationId","type":"string"},{"name":"operationId","type":"string"},{"name":"operationName","type":"string"},{"name":"functionNameFromCustomDimension","type":"string"}],"rows":[]}]}' @@ -6204,330 +6278,337 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:15 GMT + - Wed, 12 Nov 2025 09:04:00 GMT strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - via: - - 1.1 draft-oms-54d7c4f669-h9n4k - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp function invocations traces - Connection: - - keep-alive - ParameterSetName: - - -n -g --function-name --timespan --limit - User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-f75f4b59c-nnp5w + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp function invocations traces + Connection: + - keep-alive + ParameterSetName: + - -n -g --function-name --timespan --limit + User-Agent: + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -6535,11 +6616,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:16 GMT + - Wed, 12 Nov 2025 09:04:00 GMT expires: - '-1' pragma: @@ -6550,10 +6631,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F812BE9F3AF74EC8805057CA94D024AD Ref B: JKT201051406042 Ref C: 2025-10-14T11:21:16Z' + - 'Ref A: 86861743A55045F38301DC54A4E8E3BA Ref B: PNQ231110907062 Ref C: 2025-11-12T09:04:00Z' status: code: 200 message: OK @@ -6571,28 +6652,28 @@ interactions: ParameterSetName: - -n -g --function-name --timespan --limit User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:19 GMT + - Wed, 12 Nov 2025 09:04:02 GMT expires: - '-1' pragma: @@ -6605,10 +6686,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 843A5F1A7BC94240BD6E59EDE6C0460A Ref B: JKT201051407023 Ref C: 2025-10-14T11:21:18Z' + - 'Ref A: 6C5464FCD5304427829EB601D479B013 Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:01Z' x-powered-by: - ASP.NET status: @@ -6628,28 +6709,28 @@ interactions: ParameterSetName: - -n -g --function-name --timespan --limit User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:49.5143356","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:49.5143356"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000002--gto25e2","latestReadyRevisionName":"functionapp000002--gto25e2","latestRevisionFqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2993' + - '2906' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:19 GMT + - Wed, 12 Nov 2025 09:04:02 GMT expires: - '-1' pragma: @@ -6662,10 +6743,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 34595A16797B4FAE8C5D06390178898E Ref B: JKT201051406052 Ref C: 2025-10-14T11:21:19Z' + - 'Ref A: 9D495E73C44B45C8B9E9F1E92B81D246 Ref B: PNQ231110906029 Ref C: 2025-11-12T09:04:02Z' x-powered-by: - ASP.NET status: @@ -6685,27 +6766,27 @@ interactions: ParameterSetName: - -n -g --function-name --timespan --limit User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--gto25e2","name":"functionapp000002--gto25e2","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T11:18:56+00:00","fqdn":"functionapp000002--gto25e2.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=dcbd9bb7-2b2d-4849-a6a2-f750218da66a;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northcentralus.livediagnostics.monitor.azure.com/;ApplicationId=a3e40e40-d57f-4509-853f-43669d7aedab"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1371' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:21 GMT + - Wed, 12 Nov 2025 09:04:03 GMT expires: - '-1' pragma: @@ -6719,11 +6800,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/68338fa5-c792-4d3a-8ede-47362eb52896 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/75dc028c-10a5-4271-bd1f-4c1baddb78a9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B56BFC76C282453791E97E5D16B651E7 Ref B: JKT201051407036 Ref C: 2025-10-14T11:21:20Z' + - 'Ref A: 0CBFC78DB23742699F160B2D8D02B4D8 Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:02Z' x-powered-by: - ASP.NET status: @@ -6735,7 +6816,7 @@ interactions: functionNameFromCustomDimension, cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions[''InvocationId'']), tostring(customDimensions[''faas.invocation_id''])) | where timestamp > ago(5h) | where cloud_RoleName =~ ''functionapp000002'' | where cloud_RoleInstance contains - ''functionapp000002--gto25e2'' | where operation_Name =~ ''HttpExample'' or + ''functionapp000002--qp749le'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | order by timestamp desc | take 3 | project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension @@ -6756,10 +6837,10 @@ interactions: ParameterSetName: - -n -g --function-name --timespan --limit User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/a3e40e40-d57f-4509-853f-43669d7aedab/query?api-version=2018-04-20&queryType=getInvocationTraces + uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getInvocationTraces response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"timestamp","type":"datetime"},{"name":"success","type":"string"},{"name":"resultCode","type":"string"},{"name":"durationInMilliSeconds","type":"real"},{"name":"invocationId","type":"string"},{"name":"operationId","type":"string"},{"name":"operationName","type":"string"},{"name":"functionNameFromCustomDimension","type":"string"}],"rows":[]}]}' @@ -6775,13 +6856,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:25 GMT + - Wed, 12 Nov 2025 09:04:05 GMT strict-transport-security: - max-age=31536000; includeSubDomains vary: - Accept-Encoding via: - - 1.1 draft-oms-54d7c4f669-w64tl + - 1.1 draft-oms-f75f4b59c-sq4w6 x-content-type-options: - nosniff status: @@ -6801,304 +6882,311 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -7106,11 +7194,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:26 GMT + - Wed, 12 Nov 2025 09:04:06 GMT expires: - '-1' pragma: @@ -7121,10 +7209,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D92FD4CCD2BB4713B7B017B8E89723F2 Ref B: JKT201051406025 Ref C: 2025-10-14T11:21:26Z' + - 'Ref A: 6A7FC6F3420542D5BC75CE2DC3E1857B Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:05Z' status: code: 200 message: OK @@ -7142,28 +7230,28 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T11:18:26.3259789","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T11:18:26.3259789"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"containerapp000004--41fyopd","latestReadyRevisionName":"containerapp000004--41fyopd","latestRevisionFqdn":"containerapp000004--41fyopd.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"containerapp000004--ec84vxt","latestReadyRevisionName":"containerapp000004--ec84vxt","latestRevisionFqdn":"containerapp000004--ec84vxt.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2656' + - '2583' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:27 GMT + - Wed, 12 Nov 2025 09:04:05 GMT expires: - '-1' pragma: @@ -7176,10 +7264,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: C68F957864894A9F9B2AD5F55BADE0BF Ref B: JKT201051406029 Ref C: 2025-10-14T11:21:27Z' + - 'Ref A: 37D35F0D292A489983AC1E73B8E650C7 Ref B: PNQ231110907029 Ref C: 2025-11-12T09:04:06Z' x-powered-by: - ASP.NET status: @@ -7199,304 +7287,311 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -7504,11 +7599,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:31 GMT + - Wed, 12 Nov 2025 09:04:07 GMT expires: - '-1' pragma: @@ -7519,10 +7614,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B62613BD4ACC4A8DB90F127BB8A44282 Ref B: JKT201051407052 Ref C: 2025-10-14T11:21:29Z' + - 'Ref A: A4162B09A85440BE931594CADE52B0F4 Ref B: PNQ231110909042 Ref C: 2025-11-12T09:04:07Z' status: code: 200 message: OK @@ -7540,10 +7635,10 @@ interactions: ParameterSetName: - -n -g --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/non-existent-app'' @@ -7557,7 +7652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 11:21:32 GMT + - Wed, 12 Nov 2025 09:04:08 GMT expires: - '-1' pragma: @@ -7571,7 +7666,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 9DB903A0F66942C094BC84D579A9E3A6 Ref B: JKT201051407025 Ref C: 2025-10-14T11:21:32Z' + - 'Ref A: 34C852A04BCA4FDEB5BC3A89405D41CA Ref B: PNQ231110908036 Ref C: 2025-11-12T09:04:08Z' status: code: 404 message: Not Found diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml index 2b086920fb1..051108e7f54 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml @@ -17,9 +17,9 @@ interactions: ParameterSetName: - -n -g --location --sku User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2025-06-01 response: body: string: '{"nameAvailable":true}' @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Oct 2025 08:19:18 GMT + - Wed, 12 Nov 2025 07:41:24 GMT expires: - '-1' pragma: @@ -43,16 +43,16 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/4de40c12-297f-4072-96fa-625347d012eb - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/076f473b-dce6-4ac0-9422-7c41e98742b5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: BC12D8248B014DAAAC0C9C6F516F0C63 Ref B: JKT201051407040 Ref C: 2025-10-14T08:19:17Z' + - 'Ref A: A551CBCDDFE945D385B83CF7C6DDEACE Ref B: PNQ231110909042 Ref C: 2025-11-12T07:41:24Z' status: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "StorageV2", "location": "northcentralus", + body: '{"sku": {"name": "Standard_LRS"}, "kind": "StorageV2", "location": "eastus2", "properties": {"encryption": {"services": {"blob": {}}, "keySource": "Microsoft.Storage"}}}' headers: Accept: @@ -64,15 +64,15 @@ interactions: Connection: - keep-alive Content-Length: - - '176' + - '169' Content-Type: - application/json ParameterSetName: - -n -g --location --sku User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002?api-version=2025-06-01 response: body: string: '' @@ -84,11 +84,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 08:19:22 GMT + - Wed, 12 Nov 2025 07:41:32 GMT expires: - '-1' location: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267629384227&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=kSqc4KzHLlS1ftIg_geApPiBB3ybrA5XQvW8G77_Y-kfLX0tLqn_TFKQrwmMaSR18ypwsEpxknwullTeQg9gKqsJ8wzmCj-foK-m5WJUV-sLvblg1ONBTMxQ4iAajvpEJESFFkfsM1a9MmLpC88TErwwE_8mV9ZyoErR9jW38PN8yunJ7LjQy7a_33RfRbAqXIf7o9dZfLjEk_nDHo59NMFHShJs61QaQbXsQu-ndvJclbtRqty4rHvHDT-38QByEy_VcBZRBuhwFMesb77r7ncoEgBasOItsoTcbNk-GBwxCU6gzbjgDjAnnEICYop6E7sDsNU1Bm3cjq8E1Qd68A&h=NF7zouk3BkH0zVsRrm7YtH7yHW-vSsWyGVZeZdzRhkw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300928824327&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=EfTFLBrV2qSj66nlg4aVe9r3bNSchPvX_w1JqFIcXulCFVOL-gQyXFaDssih40UsAqaeheszC2FQvdXQpuLRElTBngYfGB9TgetG3botjAatsbeFC4JmDwHxmvyLuWa6ftjr0gSoOgSESFiqAng865bFfdQy6vpjiFsutE2GNdX3OWFsmUmxJDXD3tjOy6KLq_18qY36AKClMPAi8mSmpHLaYMsz3U7B6DAaytnomueCGB4w2syf5y0veTSeot7zueuGbcc9UyKDtc9erIIoOH-v_5DvxPKC6AHEp4psShfEL7G5D7Z4JCmnI16an3Zw8kxjR3UNl0ZIZqDjgHm8-Q&h=F7rom3VKnHrjtbH-HANstv8dtA4ITppB-3g5rHoyqP0 pragma: - no-cache strict-transport-security: @@ -98,13 +98,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6eb84536-f30a-4130-8c58-0d0ecce2798b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/aba18c83-6a41-4421-b5d8-3147171d3663 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 1F96578BDD6345EF82454782B159905D Ref B: JKT201051407054 Ref C: 2025-10-14T08:19:19Z' + - 'Ref A: C69AC8D355EE43CC915B607F045494F0 Ref B: PNQ231110906042 Ref C: 2025-11-12T07:41:25Z' status: code: 202 message: Accepted @@ -122,9 +122,9 @@ interactions: ParameterSetName: - -n -g --location --sku User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267629384227&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=kSqc4KzHLlS1ftIg_geApPiBB3ybrA5XQvW8G77_Y-kfLX0tLqn_TFKQrwmMaSR18ypwsEpxknwullTeQg9gKqsJ8wzmCj-foK-m5WJUV-sLvblg1ONBTMxQ4iAajvpEJESFFkfsM1a9MmLpC88TErwwE_8mV9ZyoErR9jW38PN8yunJ7LjQy7a_33RfRbAqXIf7o9dZfLjEk_nDHo59NMFHShJs61QaQbXsQu-ndvJclbtRqty4rHvHDT-38QByEy_VcBZRBuhwFMesb77r7ncoEgBasOItsoTcbNk-GBwxCU6gzbjgDjAnnEICYop6E7sDsNU1Bm3cjq8E1Qd68A&h=NF7zouk3BkH0zVsRrm7YtH7yHW-vSsWyGVZeZdzRhkw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300928824327&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=EfTFLBrV2qSj66nlg4aVe9r3bNSchPvX_w1JqFIcXulCFVOL-gQyXFaDssih40UsAqaeheszC2FQvdXQpuLRElTBngYfGB9TgetG3botjAatsbeFC4JmDwHxmvyLuWa6ftjr0gSoOgSESFiqAng865bFfdQy6vpjiFsutE2GNdX3OWFsmUmxJDXD3tjOy6KLq_18qY36AKClMPAi8mSmpHLaYMsz3U7B6DAaytnomueCGB4w2syf5y0veTSeot7zueuGbcc9UyKDtc9erIIoOH-v_5DvxPKC6AHEp4psShfEL7G5D7Z4JCmnI16an3Zw8kxjR3UNl0ZIZqDjgHm8-Q&h=F7rom3VKnHrjtbH-HANstv8dtA4ITppB-3g5rHoyqP0 response: body: string: '' @@ -136,11 +136,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Oct 2025 08:19:25 GMT + - Wed, 12 Nov 2025 07:41:32 GMT expires: - '-1' location: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267650420224&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hykvwtRgNZkg-Zj4HfL81cyyWDFYWbRNKpMXlpHLKUu3J1EWHUUc25sMxicEbiBa1sJDC86PMIPA8XfDhVF6bam0YnSTYGN_FiGcwchpo6MlZe1g-N-WTnmCUBmUcPeBRKv3gpR_SFdeQ4Ic_dalfcLge--UiYLz_11El5Swuq_7Pz3Mnr-HZVvzCB1m6q8vqZ6cNlgG96UaKsBNBHrWe75ZfFuzCUrtiQcsmz-d9XB4iSMpF98FWQ4hvk7-iYUS_M0XyulG96LtyO6vZQ7bqzW6r57MnJnWNLBLVsojSF5Jxd9HqsU7ZM3CqL6Yl6GI9EJckx0zzT4Y-AMnzXn_ZA&h=91WDMU8snD_XYH1qW3cLRrjXxcudp0jPegOpeCfxMBU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300933610075&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=z1lHQi_mZ3hYe36yTIkQqb6x-KWFT5jcFDS_mHjO2R0ciC6BEO7Zb0UkLaiAJdk7wcJHsFG_eChTRDpi1eddgLddVPS_L1kI061mKLzqocfYgDMXkxGmz4T9tRDPDgJgpPdj6U3ITgYt8wdvzCGO0VBhV5mKQColnnjff5_-9Espmmr_FcTZOaRFWOvLS6K87OdmEoitgGg0KqPzSbJoUayKjaXODU5eGtSLbhfYlDd98-WFtq8Apecoe6l1ujJDPFSMCep3L3IuWg1Vz41mbfpA5dxClDsUGpCo-aY6fXgnOZtKKQedWP1lyCDAI_ctpMBHolb7-oFW00i-J4yT2Q&h=bU28qkIF577smhVjPwlOuhy7pJfsdGogN2-DlRp54sM pragma: - no-cache strict-transport-security: @@ -150,11 +150,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0c702a60-c014-4fdd-93c4-f45f4710abc5 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/444998ac-2a7b-4879-bb8c-931ddfee59ba + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F2F08AD9BAB04F5C9CA14F5040E42A6B Ref B: JKT201051406036 Ref C: 2025-10-14T08:19:23Z' + - 'Ref A: 736D13D05A3041298757D6E18E61F7E9 Ref B: PNQ231110909054 Ref C: 2025-11-12T07:41:33Z' status: code: 202 message: Accepted @@ -172,21 +172,21 @@ interactions: ParameterSetName: - -n -g --location --sku User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northcentralus/asyncoperations/6019b206-81f1-43e4-89a9-849097288c2a?monitor=true&api-version=2025-01-01&t=638960267650420224&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hykvwtRgNZkg-Zj4HfL81cyyWDFYWbRNKpMXlpHLKUu3J1EWHUUc25sMxicEbiBa1sJDC86PMIPA8XfDhVF6bam0YnSTYGN_FiGcwchpo6MlZe1g-N-WTnmCUBmUcPeBRKv3gpR_SFdeQ4Ic_dalfcLge--UiYLz_11El5Swuq_7Pz3Mnr-HZVvzCB1m6q8vqZ6cNlgG96UaKsBNBHrWe75ZfFuzCUrtiQcsmz-d9XB4iSMpF98FWQ4hvk7-iYUS_M0XyulG96LtyO6vZQ7bqzW6r57MnJnWNLBLVsojSF5Jxd9HqsU7ZM3CqL6Yl6GI9EJckx0zzT4Y-AMnzXn_ZA&h=91WDMU8snD_XYH1qW3cLRrjXxcudp0jPegOpeCfxMBU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300933610075&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=z1lHQi_mZ3hYe36yTIkQqb6x-KWFT5jcFDS_mHjO2R0ciC6BEO7Zb0UkLaiAJdk7wcJHsFG_eChTRDpi1eddgLddVPS_L1kI061mKLzqocfYgDMXkxGmz4T9tRDPDgJgpPdj6U3ITgYt8wdvzCGO0VBhV5mKQColnnjff5_-9Espmmr_FcTZOaRFWOvLS6K87OdmEoitgGg0KqPzSbJoUayKjaXODU5eGtSLbhfYlDd98-WFtq8Apecoe6l1ujJDPFSMCep3L3IuWg1Vz41mbfpA5dxClDsUGpCo-aY6fXgnOZtKKQedWP1lyCDAI_ctpMBHolb7-oFW00i-J4yT2Q&h=bU28qkIF577smhVjPwlOuhy7pJfsdGogN2-DlRp54sM response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-10-14T08:19:20.9368654Z","key2":"2025-10-14T08:19:20.9368654Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-10-14T08:19:20.8587937Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z14.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2025-11-12T07:41:31.1240055Z","key2":"2025-11-12T07:41:31.1240055Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-11-12T07:41:30.7490040Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z20.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1490' + - '1514' content-type: - application/json date: - - Tue, 14 Oct 2025 08:19:42 GMT + - Wed, 12 Nov 2025 07:41:50 GMT expires: - '-1' pragma: @@ -198,11 +198,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9f1baf97-1554-47c2-9b25-a99d2fbbc901 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1069bed6-8a5a-4bef-b963-e9908a47f335 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 08C44D68C8904FD896BD17C828CB8B93 Ref B: JKT201051406052 Ref C: 2025-10-14T08:19:42Z' + - 'Ref A: 921A622660364861BEE22F201AB3689A Ref B: PNQ231110906052 Ref C: 2025-11-12T07:41:50Z' status: code: 200 message: OK @@ -222,12 +222,12 @@ interactions: ParameterSetName: - -n -g --query -o User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002/listKeys?api-version=2025-01-01&$expand=kerb + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002/listKeys?api-version=2025-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2025-10-14T08:19:20.9368654Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-10-14T08:19:20.9368654Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2025-11-12T07:41:31.1240055Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-11-12T07:41:31.1240055Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Oct 2025 08:20:05 GMT + - Wed, 12 Nov 2025 07:42:11 GMT expires: - '-1' pragma: @@ -248,13 +248,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d809f0d1-c43f-4e28-a7dd-214b5f6d1176 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/aab94722-57cf-46fb-a019-dffc9306ea97 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 3766565827CC4E9B8FD33929EF07D423 Ref B: JKT201051406031 Ref C: 2025-10-14T08:20:04Z' + - 'Ref A: A1CBEF20790B4B228C954D6CB3520775 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:42:11Z' status: code: 200 message: OK @@ -272,21 +270,21 @@ interactions: ParameterSetName: - -n -g --query -o User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002?api-version=2025-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-10-14T08:19:20.9368654Z","key2":"2025-10-14T08:19:20.9368654Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-10-14T08:19:20.9368654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-10-14T08:19:20.8587937Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z14.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2025-11-12T07:41:31.1240055Z","key2":"2025-11-12T07:41:31.1240055Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-11-12T07:41:30.7490040Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z20.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '1490' + - '1514' content-type: - application/json date: - - Tue, 14 Oct 2025 08:20:06 GMT + - Wed, 12 Nov 2025 07:42:11 GMT expires: - '-1' pragma: @@ -297,10 +295,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D33CC713161948D99FC1E4D6BE181C41 Ref B: JKT201051406023 Ref C: 2025-10-14T08:20:06Z' + - 'Ref A: B9F47ED3C80145E69DA2B2580AF70334 Ref B: PNQ231110907052 Ref C: 2025-11-12T07:42:12Z' status: code: 200 message: OK @@ -318,304 +316,311 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -623,11 +628,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:20:08 GMT + - Wed, 12 Nov 2025 07:42:13 GMT expires: - '-1' pragma: @@ -638,10 +643,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B32CA6247FC946FABCAFBF2273A7C00B Ref B: JKT201051406054 Ref C: 2025-10-14T08:20:09Z' + - 'Ref A: 5830C12EEE3C437B9F7C9CB56B58D40E Ref B: PNQ231110908031 Ref C: 2025-11-12T07:42:14Z' status: code: 200 message: OK @@ -659,28 +664,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1810' + - '1732' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:20:10 GMT + - Wed, 12 Nov 2025 07:42:14 GMT expires: - '-1' pragma: @@ -693,10 +698,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1C3180F0117F495EA268CE0E901BB158 Ref B: JKT201051406052 Ref C: 2025-10-14T08:20:10Z' + - 'Ref A: EE0EF94C86D94D11B921AA25D8981BF8 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:42:14Z' x-powered-by: - ASP.NET status: @@ -716,304 +721,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1021,11 +1033,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:21:52 GMT + - Wed, 12 Nov 2025 07:43:56 GMT expires: - '-1' pragma: @@ -1036,10 +1048,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F7739AEC2EF24D35AD156ABC559128BC Ref B: JKT201051406052 Ref C: 2025-10-14T08:21:52Z' + - 'Ref A: 8979F0EA1DE94E6D9BCBB9F35AE62C6E Ref B: PNQ231110909029 Ref C: 2025-11-12T07:43:56Z' status: code: 200 message: OK @@ -1057,28 +1069,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","name":"env-v1-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T07:49:35.2619822","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T07:49:35.2619822"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"graycoast-0c716230.centraluseuap.azurecontainerapps.io","staticIp":"172.215.14.189","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/managedEnvironments/env-v1-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1810' + - '1732' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:21:53 GMT + - Wed, 12 Nov 2025 07:43:57 GMT expires: - '-1' pragma: @@ -1091,10 +1103,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: AD9F2A6289FA46AFAF82946FE3CAD798 Ref B: JKT201051407054 Ref C: 2025-10-14T08:21:53Z' + - 'Ref A: 521788EEF98B4A96A99FDE9BC56DC469 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:43:57Z' x-powered-by: - ASP.NET status: @@ -1114,304 +1126,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1419,11 +1438,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:21:55 GMT + - Wed, 12 Nov 2025 07:43:57 GMT expires: - '-1' pragma: @@ -1434,16 +1453,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 2847EDC0C7024FD0BA738723AAEE90C0 Ref B: JKT201051407042 Ref C: 2025-10-14T08:21:54Z' + - 'Ref A: F5E489A98DF44CB683B74CCD17EEF741 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:43:58Z' status: code: 200 message: OK - request: - body: '{"location": "Central US EUAP", "identity": null, "properties": {"environmentId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage", + body: '{"location": "East US 2", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2", "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": @@ -1465,36 +1484,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1435' + - '1405' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA cache-control: - no-cache content-length: - - '2418' + - '2363' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:21:58 GMT + - Wed, 12 Nov 2025 07:44:03 GMT expires: - '-1' pragma: @@ -1508,13 +1527,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8b21c6e1-37a7-45ab-9cd9-8c1a732cbc6f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/f4c0c584-d7a0-4aef-8ce4-3f81b8bb84ba x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 0D73B5B278DB4E3C9CD2037D994D9E6D Ref B: JKT201051406042 Ref C: 2025-10-14T08:21:56Z' + - 'Ref A: 5004A9E44F3E4048B935063A69376537 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:43:58Z' x-powered-by: - ASP.NET status: @@ -1534,27 +1551,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:00 GMT + - Wed, 12 Nov 2025 07:44:03 GMT expires: - '-1' pragma: @@ -1568,11 +1585,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6cd2766b-8475-4ba1-b8e5-d2d7122b113a - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/950a928b-fcad-41e2-9d01-a0a4ca592032 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5067E153C519417FBF9E71C72D306D9C Ref B: JKT201051406040 Ref C: 2025-10-14T08:21:59Z' + - 'Ref A: 28C85E1619B34316B35655EE21CB83FE Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:03Z' x-powered-by: - ASP.NET status: @@ -1592,27 +1609,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:02 GMT + - Wed, 12 Nov 2025 07:44:06 GMT expires: - '-1' pragma: @@ -1626,11 +1643,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/93243753-2b76-4bb9-b090-09980dc81db5 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/18070646-02f2-4ae8-a7bf-fc44de5a676c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: BF12D44EDDBA4AA1B794CF237D837BF9 Ref B: JKT201051406052 Ref C: 2025-10-14T08:22:03Z' + - 'Ref A: E19EEBDE857746178AA84B14BE690810 Ref B: PNQ231110906054 Ref C: 2025-11-12T07:44:06Z' x-powered-by: - ASP.NET status: @@ -1650,27 +1667,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:06 GMT + - Wed, 12 Nov 2025 07:44:09 GMT expires: - '-1' pragma: @@ -1684,11 +1701,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d25dd5d1-f89a-4e61-9edb-4a62673ac8e8 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/def93e66-a2d2-41aa-90ba-1710835f0f4f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9C5F5C0E699D4522A568501B0F30151C Ref B: JKT201051406060 Ref C: 2025-10-14T08:22:05Z' + - 'Ref A: D2ED6B90F8014C8BA99B7E9C97DF76B8 Ref B: PNQ231110907054 Ref C: 2025-11-12T07:44:09Z' x-powered-by: - ASP.NET status: @@ -1708,27 +1725,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"InProgress","startTime":"2025-10-14T08:21:58.8119599"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '285' + - '279' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:09 GMT + - Wed, 12 Nov 2025 07:44:11 GMT expires: - '-1' pragma: @@ -1742,11 +1759,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/79016214-9d09-428a-aa8b-100db5b8614f - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/b64387ad-a3dd-4e87-858c-6ce6d648730f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 34AF4C2BC36646EE87168A443D9DB13B Ref B: JKT201051406052 Ref C: 2025-10-14T08:22:09Z' + - 'Ref A: B91B2C9F459348C7BE81FBEF4A50C6EE Ref B: PNQ231110907062 Ref C: 2025-11-12T07:44:12Z' x-powered-by: - ASP.NET status: @@ -1766,27 +1783,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638960269189042375&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=Lr8QNDucfZpPo1wlxV7QqjbquJ6wC5UIbFUE9eZnuXrC_goAz7ZN1N2Ki7rjRWeNmE7ec35lQbSrs2fgYzBvz9n4UrAG_XIJb2gvYWQT0AGQd1sqOylzUFhQrT4r58kB7MMnOQyNqgxJrabSMFLgZ3yFxtsl40XPJovETYG0KzIGwI0qlq2Q1DYTkbBKpxEqbU9VRbnm7zSVCVFGHc-B_ot2vhqUcvpmu42El6PNLRh7HuXbcNaHWBwEYYDmnnyt018Zv_xDwCgXaV563hSojvKLM2HjszOGa46ETPTQSbE8O-nm7LuH4UzxRfIuusN4eAizYXl5_oLkCjBF7WBnKA&h=YskZB-HAEhNpBpmPBm4wNZUkOpLk8qxwC6pADUfAOS8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/centraluseuap/containerappOperationStatuses/d5f85bf4-e17c-43fa-ac25-07eae88aa787","name":"d5f85bf4-e17c-43fa-ac25-07eae88aa787","status":"Succeeded","startTime":"2025-10-14T08:21:58.8119599"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"Succeeded","startTime":"2025-11-12T07:44:03.1804073"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '284' + - '278' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:13 GMT + - Wed, 12 Nov 2025 07:44:14 GMT expires: - '-1' pragma: @@ -1800,11 +1817,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/36c7254c-6d9b-4f22-9104-67230e855a2d - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/f0aec46d-a694-4a89-bf98-7a978475f33b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5C49CED7DA8B4522BC7ADE04CFAA7F5E Ref B: JKT201051406040 Ref C: 2025-10-14T08:22:12Z' + - 'Ref A: F700726B096F4C689DB9FB259B069F7A Ref B: PNQ231110906025 Ref C: 2025-11-12T07:44:15Z' x-powered-by: - ASP.NET status: @@ -1824,28 +1841,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --env-vars User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:14 GMT + - Wed, 12 Nov 2025 07:44:15 GMT expires: - '-1' pragma: @@ -1858,10 +1875,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F412AE4EB99B4F8EB0F5C27061AFEF08 Ref B: JKT201051406060 Ref C: 2025-10-14T08:22:13Z' + - 'Ref A: C78D512869934C8085B7D8ECC175F6A6 Ref B: PNQ231110908036 Ref C: 2025-11-12T07:44:15Z' x-powered-by: - ASP.NET status: @@ -1881,28 +1898,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am","name":"functionapp000003--b8487am","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T08:22:06+00:00","fqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating","runningStateDetails":"The - TargetPort 80 does not match the listening port 38665."}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6","name":"functionapp000003--1hxsyb6","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T07:44:09+00:00","fqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating"}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1472' + - '1383' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:17 GMT + - Wed, 12 Nov 2025 07:44:18 GMT expires: - '-1' pragma: @@ -1916,11 +1932,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3100f0bd-f60f-4e4c-901e-e029bbab6352 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/7c8a54d8-f39b-4c67-9c74-4b48f0cb7257 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 8798EB5798614F84A9FBB58DC79FE752 Ref B: JKT201051406054 Ref C: 2025-10-14T08:22:16Z' + - 'Ref A: 681FF1F6C016400D9F64DDEC50C174FD Ref B: PNQ231110906034 Ref C: 2025-11-12T07:44:17Z' x-powered-by: - ASP.NET status: @@ -1940,27 +1956,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am","name":"functionapp000003--b8487am","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-14T08:22:06+00:00","fqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6","name":"functionapp000003--1hxsyb6","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T07:44:09+00:00","fqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1461' + - '1455' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:28 GMT + - Wed, 12 Nov 2025 07:44:29 GMT expires: - '-1' pragma: @@ -1974,11 +1990,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a040c25c-73b9-45c3-8237-3d8e32e041d2 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/6e57e92e-c045-4766-a1d5-4a645ed1a1b8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 21AF5A2C55404A848BC1EA78B5C35D5F Ref B: JKT201051406034 Ref C: 2025-10-14T08:22:28Z' + - 'Ref A: BBD2BC67799F4834BF28CD3E04A755E5 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:44:29Z' x-powered-by: - ASP.NET status: @@ -1998,28 +2014,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:32 GMT + - Wed, 12 Nov 2025 07:44:30 GMT expires: - '-1' pragma: @@ -2032,10 +2048,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: FE86B5BD653449F691DE78919A30E1F8 Ref B: JKT201051407040 Ref C: 2025-10-14T08:22:30Z' + - 'Ref A: 27E01F16F253414E9D9A739B58B0C61E Ref B: PNQ231110907054 Ref C: 2025-11-12T07:44:30Z' x-powered-by: - ASP.NET status: @@ -2055,29 +2071,29 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-02-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2861' + - '2825' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:34 GMT + - Wed, 12 Nov 2025 07:44:31 GMT expires: - '-1' pragma: @@ -2091,11 +2107,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/78c2b0ae-df19-43e8-9e78-671451527059 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/930aee59-382f-4d0f-ab6a-172aabf5e283 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 291066A5BA9B40C69743B0438FA0D1B7 Ref B: JKT201051406029 Ref C: 2025-10-14T08:22:33Z' + - 'Ref A: D4C025EFEAE5472E900CCCC6CF92CE8F Ref B: PNQ231110908036 Ref C: 2025-11-12T07:44:31Z' x-powered-by: - ASP.NET status: @@ -2115,28 +2131,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:37 GMT + - Wed, 12 Nov 2025 07:44:32 GMT expires: - '-1' pragma: @@ -2149,10 +2165,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 641660ACB4744DA0BA579F4A53A70CF0 Ref B: JKT201051407062 Ref C: 2025-10-14T08:22:36Z' + - 'Ref A: A286BAD92C6B45C4AC14D0F860FBD25A Ref B: PNQ231110906052 Ref C: 2025-11-12T07:44:32Z' x-powered-by: - ASP.NET status: @@ -2172,28 +2188,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:37 GMT + - Wed, 12 Nov 2025 07:44:32 GMT expires: - '-1' pragma: @@ -2206,10 +2222,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D0F7E7F6FB584D498761DCC54DE90167 Ref B: JKT201051407025 Ref C: 2025-10-14T08:22:37Z' + - 'Ref A: 8CB7EEE3649148EAB5E750ABE5CA6703 Ref B: PNQ231110906060 Ref C: 2025-11-12T07:44:33Z' x-powered-by: - ASP.NET status: @@ -2229,29 +2245,29 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:39 GMT + - Wed, 12 Nov 2025 07:44:33 GMT expires: - '-1' pragma: @@ -2265,11 +2281,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c2964fca-ac93-4d3d-ba6d-5c7d12b644b6 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/589b5a0a-6d6b-45a4-a8cd-701de39e5a0e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9A872AFA155B48D9BA709571D19CB28A Ref B: JKT201051406023 Ref C: 2025-10-14T08:22:38Z' + - 'Ref A: 2F27BABB866A436480F7649CC6D37411 Ref B: PNQ231110906054 Ref C: 2025-11-12T07:44:33Z' x-powered-by: - ASP.NET status: @@ -2289,29 +2305,29 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:40 GMT + - Wed, 12 Nov 2025 07:44:33 GMT expires: - '-1' pragma: @@ -2325,11 +2341,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b63a8bbe-9b65-421b-affd-0aefa745b3af - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e23eb357-6657-4ba1-bca2-84cc11549229 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: BD1BB1AADC254BC39BBD9E6F4F3BDDA1 Ref B: JKT201051407042 Ref C: 2025-10-14T08:22:40Z' + - 'Ref A: 6F81A73724E9467CB071FA41BCD81296 Ref B: PNQ231110908052 Ref C: 2025-11-12T07:44:34Z' x-powered-by: - ASP.NET status: @@ -2351,27 +2367,27 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:22:42.0838393Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:34.5617149Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:41 GMT + - Wed, 12 Nov 2025 07:44:34 GMT expires: - '-1' pragma: @@ -2385,13 +2401,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0dec5a36-4af4-45f0-bfbb-4f4a0feb4bfa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b3614e9c-07d7-48a3-b908-31e1d14843a8 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 6539175863794F59960B6E34AFB5C5B7 Ref B: JKT201051406029 Ref C: 2025-10-14T08:22:41Z' + - 'Ref A: 41B28C99E4CD4CD88D5FC69BAD7D29DC Ref B: PNQ231110906036 Ref C: 2025-11-12T07:44:34Z' x-powered-by: - ASP.NET status: @@ -2411,10 +2427,10 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+hostKey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+hostKey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"default\",\n\"value\": @@ -2425,7 +2441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:45 GMT + - Wed, 12 Nov 2025 07:44:37 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -2451,28 +2467,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:47 GMT + - Wed, 12 Nov 2025 07:44:38 GMT expires: - '-1' pragma: @@ -2485,10 +2501,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 2B9E13F91C3A4E0099C4475B4C48E4C7 Ref B: JKT201051406060 Ref C: 2025-10-14T08:22:47Z' + - 'Ref A: 9D5F90141948403B99EE146197449ACC Ref B: PNQ231110906031 Ref C: 2025-11-12T07:44:39Z' x-powered-by: - ASP.NET status: @@ -2508,28 +2524,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:48 GMT + - Wed, 12 Nov 2025 07:44:39 GMT expires: - '-1' pragma: @@ -2542,10 +2558,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F7DF83231CF9455093A2BE1068D5C6CE Ref B: JKT201051407036 Ref C: 2025-10-14T08:22:48Z' + - 'Ref A: F8BAEC5F593D4D1982B73C7DEA503999 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:44:39Z' x-powered-by: - ASP.NET status: @@ -2565,29 +2581,29 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:49 GMT + - Wed, 12 Nov 2025 07:44:39 GMT expires: - '-1' pragma: @@ -2601,11 +2617,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6aeca71a-7a70-4d1c-aa18-068b0c25fd43 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c82232b2-8c01-4ef4-bcd1-dcc1db7a69c1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: ED58A01B700C489E83A2432F68B40AA0 Ref B: JKT201051407040 Ref C: 2025-10-14T08:22:49Z' + - 'Ref A: EF15E9C54E7B42A59BB5DECC0A63B12A Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:39Z' x-powered-by: - ASP.NET status: @@ -2625,29 +2641,29 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:51 GMT + - Wed, 12 Nov 2025 07:44:40 GMT expires: - '-1' pragma: @@ -2661,11 +2677,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6999abfd-ede1-49d4-b80e-e2dbb17acfeb - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/6c576173-a4ef-4436-9d1a-a9eb557dfe5d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 452DCD44F955425580F4E818BA830532 Ref B: JKT201051407052 Ref C: 2025-10-14T08:22:50Z' + - 'Ref A: 00AA4A68C09A4BA99BCE1DF181BFCF78 Ref B: PNQ231110907040 Ref C: 2025-11-12T07:44:40Z' x-powered-by: - ASP.NET status: @@ -2687,27 +2703,27 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:22:54.7423522Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:41.2144903Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:22:56 GMT + - Wed, 12 Nov 2025 07:44:40 GMT expires: - '-1' pragma: @@ -2721,13 +2737,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9b98913e-ebf4-44d8-a81c-e54eb6bc665b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c5ab4b7b-c7af-4057-a7e3-9ffa74bbbbe8 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 149A45BC43174B1699AD343862A8E966 Ref B: JKT201051407040 Ref C: 2025-10-14T08:22:51Z' + - 'Ref A: 2E7B41B0BCFA4C169FADDF6422A73BDC Ref B: PNQ231110907042 Ref C: 2025-11-12T07:44:40Z' x-powered-by: - ASP.NET status: @@ -2747,10 +2763,10 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+masterKey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+masterKey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"_master\",\n\"value\": @@ -2761,7 +2777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:00 GMT + - Wed, 12 Nov 2025 07:44:44 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -2787,28 +2803,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:02 GMT + - Wed, 12 Nov 2025 07:44:44 GMT expires: - '-1' pragma: @@ -2821,10 +2837,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3B26A4795BF64912826410CE70116D15 Ref B: JKT201051407060 Ref C: 2025-10-14T08:23:01Z' + - 'Ref A: C169A73468E841EF94593C3A2CB7DBFC Ref B: PNQ231110907060 Ref C: 2025-11-12T07:44:45Z' x-powered-by: - ASP.NET status: @@ -2844,28 +2860,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:03 GMT + - Wed, 12 Nov 2025 07:44:45 GMT expires: - '-1' pragma: @@ -2878,10 +2894,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1DC4C2DEFF5C4BE8BB44BB274E3722E7 Ref B: JKT201051407052 Ref C: 2025-10-14T08:23:02Z' + - 'Ref A: DD6E34A55DC5444FB1EE7C202102763F Ref B: PNQ231110908042 Ref C: 2025-11-12T07:44:45Z' x-powered-by: - ASP.NET status: @@ -2901,29 +2917,29 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:04 GMT + - Wed, 12 Nov 2025 07:44:46 GMT expires: - '-1' pragma: @@ -2937,11 +2953,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3032ed9f-ab33-4702-8e6f-cd411b65991b - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/90d4d583-4e8b-4571-80d6-9e8858c2dd43 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9FACF7E6B36D4E388D3760665B22317C Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:04Z' + - 'Ref A: A1E8D49C2D134E33AFB1E31DDE4317F4 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:44:46Z' x-powered-by: - ASP.NET status: @@ -2961,29 +2977,29 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:05 GMT + - Wed, 12 Nov 2025 07:44:46 GMT expires: - '-1' pragma: @@ -2997,11 +3013,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/938a1ff4-b767-428f-8d91-166aa9d834d9 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/831323ec-a069-46dc-abee-54989de1125f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5296191D6C474C698175E008FE946EC1 Ref B: JKT201051406040 Ref C: 2025-10-14T08:23:05Z' + - 'Ref A: 202CC2CF568B4BFC8A9FC82FCE06D29B Ref B: PNQ231110909023 Ref C: 2025-11-12T07:44:47Z' x-powered-by: - ASP.NET status: @@ -3023,27 +3039,27 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:07.1480433Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:47.9300762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:06 GMT + - Wed, 12 Nov 2025 07:44:47 GMT expires: - '-1' pragma: @@ -3057,13 +3073,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a173ab8f-02d9-421e-83d5-522f656549d0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0d1c302a-403f-4cc9-a00c-05cbc683c718 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 1A3AF8F5B1B54786BC3B3E0B32AEF261 Ref B: JKT201051406025 Ref C: 2025-10-14T08:23:06Z' + - 'Ref A: D1AF1319303642FA98EB663CB2577D63 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:44:47Z' x-powered-by: - ASP.NET status: @@ -3083,10 +3099,10 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+systemKey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+systemKey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": []\n}\n}"}' @@ -3096,7 +3112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:10 GMT + - Wed, 12 Nov 2025 07:44:51 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -3122,28 +3138,28 @@ interactions: ParameterSetName: - -g -n --key-type --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:12 GMT + - Wed, 12 Nov 2025 07:44:51 GMT expires: - '-1' pragma: @@ -3156,10 +3172,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 734668B507BD4040871EC77C980EE908 Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:12Z' + - 'Ref A: 042339EEF2E3467B92CE7784F9954896 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:44:52Z' x-powered-by: - ASP.NET status: @@ -3179,28 +3195,28 @@ interactions: ParameterSetName: - -g -n --key-type --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:13 GMT + - Wed, 12 Nov 2025 07:44:51 GMT expires: - '-1' pragma: @@ -3213,10 +3229,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 7E42654E8A3445FAB69AEE7336012A60 Ref B: JKT201051406023 Ref C: 2025-10-14T08:23:13Z' + - 'Ref A: 3D4FD537FE364F3FB641CC79C09D0A9C Ref B: PNQ231110908034 Ref C: 2025-11-12T07:44:52Z' x-powered-by: - ASP.NET status: @@ -3236,29 +3252,29 @@ interactions: ParameterSetName: - -g -n --key-type --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:14 GMT + - Wed, 12 Nov 2025 07:44:52 GMT expires: - '-1' pragma: @@ -3272,11 +3288,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/87b9420c-fe40-4878-9f16-3590b314e084 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e6188825-3886-4fbc-b6a3-f05df9ba8f80 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1269BA491DAB4C808BBC0EEED2F91FCD Ref B: JKT201051406060 Ref C: 2025-10-14T08:23:14Z' + - 'Ref A: EFF778D0A9EF4AA4853AA602B27E31A7 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:52Z' x-powered-by: - ASP.NET status: @@ -3296,29 +3312,29 @@ interactions: ParameterSetName: - -g -n --key-type --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:15 GMT + - Wed, 12 Nov 2025 07:44:53 GMT expires: - '-1' pragma: @@ -3332,11 +3348,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a176e44a-073e-4a36-bc96-4943601768d6 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/cadd4f06-f876-46c4-b5be-ecd49fb3fa4d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 0D9B8F823C164A7EA3F4FDF0C0DCDC19 Ref B: JKT201051406025 Ref C: 2025-10-14T08:23:15Z' + - 'Ref A: 9320509EE4A8437483238C2CAB17101D Ref B: PNQ231110908023 Ref C: 2025-11-12T07:44:53Z' x-powered-by: - ASP.NET status: @@ -3358,27 +3374,27 @@ interactions: ParameterSetName: - -g -n --key-type --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:16.7670003Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:54.2719163Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:16 GMT + - Wed, 12 Nov 2025 07:44:53 GMT expires: - '-1' pragma: @@ -3392,13 +3408,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cb49e673-bdf7-4c71-b283-56452aa3b149 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/3285a28c-0a97-40c0-bb3a-4f4682537fa1 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 84B383591BC248BD91919F38EE2F84B9 Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:16Z' + - 'Ref A: 4C1875279CF54953AC066D29FC44C930 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:44:54Z' x-powered-by: - ASP.NET status: @@ -3418,10 +3434,10 @@ interactions: ParameterSetName: - -g -n --key-type --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+functionKey+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+functionKey+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"default\",\n\"value\": @@ -3432,7 +3448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:20 GMT + - Wed, 12 Nov 2025 07:44:58 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -3458,28 +3474,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:22 GMT + - Wed, 12 Nov 2025 07:44:59 GMT expires: - '-1' pragma: @@ -3492,10 +3508,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: A93A920AADCF4616A2255B9D4C2B78E8 Ref B: JKT201051407052 Ref C: 2025-10-14T08:23:21Z' + - 'Ref A: CD769347F0C74FC7A7B5467CDC3286DD Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:59Z' x-powered-by: - ASP.NET status: @@ -3515,28 +3531,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:22 GMT + - Wed, 12 Nov 2025 07:45:00 GMT expires: - '-1' pragma: @@ -3549,10 +3565,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 50F3B61236124E4DBC344410432401C7 Ref B: JKT201051406040 Ref C: 2025-10-14T08:23:22Z' + - 'Ref A: DE132A8B65EC4186B65842756934F5A1 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:00Z' x-powered-by: - ASP.NET status: @@ -3572,29 +3588,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:23 GMT + - Wed, 12 Nov 2025 07:45:00 GMT expires: - '-1' pragma: @@ -3608,11 +3624,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/1b638ee5-a8bb-48bd-8929-d67de4d34f85 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/380648f6-89b2-44a6-bc57-27ba72a60bc7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 093BC9C2F405458285B61EF76E2C7E96 Ref B: JKT201051407029 Ref C: 2025-10-14T08:23:23Z' + - 'Ref A: 5E7FE5A29CC64B87B5B0E117755CA996 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:45:00Z' x-powered-by: - ASP.NET status: @@ -3632,29 +3648,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:24 GMT + - Wed, 12 Nov 2025 07:45:00 GMT expires: - '-1' pragma: @@ -3668,11 +3684,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/89b817b6-c02d-4fa6-a720-57e295370270 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b5d96f66-df08-48b7-ad5e-d79cf5d2755c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D65265F0F1B64AC1A9834829CE6BC366 Ref B: JKT201051407042 Ref C: 2025-10-14T08:23:24Z' + - 'Ref A: DB2BC59C6C644668873C542F7025B86B Ref B: PNQ231110906060 Ref C: 2025-11-12T07:45:01Z' x-powered-by: - ASP.NET status: @@ -3694,27 +3710,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:26.4159871Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:01.5908585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:26 GMT + - Wed, 12 Nov 2025 07:45:00 GMT expires: - '-1' pragma: @@ -3728,13 +3744,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c7424d52-ea8d-48af-87f8-87e32a6ab33c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9d833ac3-3e9d-4613-9163-2484a1ae5ed7 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 22642682675C4314BDAA2F5B89B0EB20 Ref B: JKT201051407062 Ref C: 2025-10-14T08:23:25Z' + - 'Ref A: 7868FD7BAC4B47479913AFD60A0B5393 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:01Z' x-powered-by: - ASP.NET status: @@ -3754,10 +3770,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+default + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+default response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"default\",\n\"value\": @@ -3768,7 +3784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:31 GMT + - Wed, 12 Nov 2025 07:45:04 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -3794,28 +3810,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:31 GMT + - Wed, 12 Nov 2025 07:45:05 GMT expires: - '-1' pragma: @@ -3828,10 +3844,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 22FD9EE9DA80421C9860891719C0121D Ref B: JKT201051407029 Ref C: 2025-10-14T08:23:32Z' + - 'Ref A: 3D5AE9A004B5486E9EA5C043DB258F37 Ref B: PNQ231110906031 Ref C: 2025-11-12T07:45:05Z' x-powered-by: - ASP.NET status: @@ -3851,28 +3867,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:32 GMT + - Wed, 12 Nov 2025 07:45:05 GMT expires: - '-1' pragma: @@ -3885,10 +3901,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D469BB6132474A3B9017A9FC8BB889A4 Ref B: JKT201051406031 Ref C: 2025-10-14T08:23:33Z' + - 'Ref A: 733EDB82CAB347DFB0DD184C813750FA Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:06Z' x-powered-by: - ASP.NET status: @@ -3908,29 +3924,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:34 GMT + - Wed, 12 Nov 2025 07:45:06 GMT expires: - '-1' pragma: @@ -3944,11 +3960,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cb80a213-1938-4b4b-9339-bcb85ff6f1c5 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b4457034-2cac-495c-8b42-e2b88fd22eec + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 34226F18A06E47F1BF0D5FD5DE1007E0 Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:33Z' + - 'Ref A: B24BF6D50B9A4BBD90FDD6B79F3CFE67 Ref B: PNQ231110906025 Ref C: 2025-11-12T07:45:06Z' x-powered-by: - ASP.NET status: @@ -3968,29 +3984,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:35 GMT + - Wed, 12 Nov 2025 07:45:06 GMT expires: - '-1' pragma: @@ -4004,11 +4020,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a5f37cba-4606-42a6-892a-c9072246347f - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/a7d1325f-673b-4f31-af1f-b51f029fbc30 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9E2AC16DACBE467EAE1451B8833AF8AC Ref B: JKT201051407040 Ref C: 2025-10-14T08:23:35Z' + - 'Ref A: D67B33FFA94D46B28C5D6DF8B02A44CA Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45:06Z' x-powered-by: - ASP.NET status: @@ -4030,27 +4046,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:36.6356497Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:07.5303285Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:36 GMT + - Wed, 12 Nov 2025 07:45:07 GMT expires: - '-1' pragma: @@ -4064,13 +4080,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d060b85a-a255-428d-b57c-1b0278f885dc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/f5acee6d-d951-4c81-baab-6b9e1033415d + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: E6AB3B5FF6364351868639865D8A8174 Ref B: JKT201051407052 Ref C: 2025-10-14T08:23:36Z' + - 'Ref A: 8212139D90C3459490FCE773F46EFAB8 Ref B: PNQ231110906040 Ref C: 2025-11-12T07:45:07Z' x-powered-by: - ASP.NET status: @@ -4090,10 +4106,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+masterKey+--key-name+_master + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+masterKey+--key-name+_master response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"_master\",\n\"value\": @@ -4104,7 +4120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:40 GMT + - Wed, 12 Nov 2025 07:45:10 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -4130,28 +4146,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:41 GMT + - Wed, 12 Nov 2025 07:45:10 GMT expires: - '-1' pragma: @@ -4164,10 +4180,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 280E9BFA4F23486A98BDD6662356EBAF Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:41Z' + - 'Ref A: 44E824C3D45F4A2C9EAFEFF3F75CBD9B Ref B: PNQ231110907062 Ref C: 2025-11-12T07:45:11Z' x-powered-by: - ASP.NET status: @@ -4187,28 +4203,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:42 GMT + - Wed, 12 Nov 2025 07:45:11 GMT expires: - '-1' pragma: @@ -4221,10 +4237,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6909E3CBF1244E0298AE1E9954AA6559 Ref B: JKT201051406034 Ref C: 2025-10-14T08:23:42Z' + - 'Ref A: E64CA809E6CC46138C99D7CB02B41579 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:11Z' x-powered-by: - ASP.NET status: @@ -4244,29 +4260,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:43 GMT + - Wed, 12 Nov 2025 07:45:12 GMT expires: - '-1' pragma: @@ -4280,11 +4296,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ec563feb-a022-41bf-964c-272e5b512fcb - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/45388dcc-283f-4c32-ac44-ba03d386b78e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 64CEA81C516C429C94127486E8B1F4F5 Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:43Z' + - 'Ref A: 6A432E5766A14C87A5F9CA013D31A825 Ref B: PNQ231110908034 Ref C: 2025-11-12T07:45:12Z' x-powered-by: - ASP.NET status: @@ -4304,29 +4320,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:44 GMT + - Wed, 12 Nov 2025 07:45:12 GMT expires: - '-1' pragma: @@ -4340,11 +4356,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3e06c8e1-9fbc-4343-ae97-e90b42eec935 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1fd3aa23-2d30-4191-bbc0-c85bdc45b64e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 795B19DA921446C5A22CC897F1640C17 Ref B: JKT201051406034 Ref C: 2025-10-14T08:23:44Z' + - 'Ref A: 8C8A56D27BD14BCC8C73DDB45BA26EC7 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:45:13Z' x-powered-by: - ASP.NET status: @@ -4366,27 +4382,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:46.0573334Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:13.6270338Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:45 GMT + - Wed, 12 Nov 2025 07:45:13 GMT expires: - '-1' pragma: @@ -4400,13 +4416,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d881ec1b-56bd-4072-b52b-857b76927464 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1176f62d-0659-421d-a08b-dfce5d0f1683 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 2C8B9BD55D3D43E9838BC92C8DD8611B Ref B: JKT201051407034 Ref C: 2025-10-14T08:23:45Z' + - 'Ref A: BBFFE46C8AF44E8C8A071DD58AC26E89 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:13Z' x-powered-by: - ASP.NET status: @@ -4426,10 +4442,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+default+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+default+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"default\",\n\"value\": @@ -4440,7 +4456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:49 GMT + - Wed, 12 Nov 2025 07:45:16 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -4466,28 +4482,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:50 GMT + - Wed, 12 Nov 2025 07:45:17 GMT expires: - '-1' pragma: @@ -4500,10 +4516,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6C0C8F4DFBB5435FACFC5F11A295CA0A Ref B: JKT201051406034 Ref C: 2025-10-14T08:23:50Z' + - 'Ref A: AF4BDA6688A74203B12A837B01B71345 Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:17Z' x-powered-by: - ASP.NET status: @@ -4523,28 +4539,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:51 GMT + - Wed, 12 Nov 2025 07:45:18 GMT expires: - '-1' pragma: @@ -4557,10 +4573,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6738A106F1BC4261B4938DEE3409D128 Ref B: JKT201051407036 Ref C: 2025-10-14T08:23:51Z' + - 'Ref A: 2B9C754C01A746548E57B0A5896123E0 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:18Z' x-powered-by: - ASP.NET status: @@ -4580,29 +4596,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:53 GMT + - Wed, 12 Nov 2025 07:45:18 GMT expires: - '-1' pragma: @@ -4616,11 +4632,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/916504f0-f8a8-4253-8317-de5fd2cd7336 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ad6612eb-a632-43cc-a8b1-61c8f331d1b5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 58EEE2039E15445FA86EE1EFA56BFC35 Ref B: JKT201051406052 Ref C: 2025-10-14T08:23:52Z' + - 'Ref A: B04705C77B964023A282B222B9D621A1 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:18Z' x-powered-by: - ASP.NET status: @@ -4640,29 +4656,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:54 GMT + - Wed, 12 Nov 2025 07:45:18 GMT expires: - '-1' pragma: @@ -4676,11 +4692,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cea230d5-ccb6-410a-a1ba-2616c0fa3175 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9cb18766-b831-491a-b7ad-d1354cd87354 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: EF1FF873C1C54008ACB80110796AF0D6 Ref B: JKT201051406042 Ref C: 2025-10-14T08:23:54Z' + - 'Ref A: D61FE5ABCF194A7981DE2D9BC570F98A Ref B: PNQ231110906062 Ref C: 2025-11-12T07:45:19Z' x-powered-by: - ASP.NET status: @@ -4702,27 +4718,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:23:56.2004486Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:20.3063481Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:55 GMT + - Wed, 12 Nov 2025 07:45:19 GMT expires: - '-1' pragma: @@ -4736,13 +4752,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3c93eb0c-6889-46d9-a959-48456d2c6f6d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/711ac6d0-ce35-4553-b856-a5a7171bfaeb + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 71AF9BFD1D284EA08D9E6EF1A1DD0CB9 Ref B: JKT201051406042 Ref C: 2025-10-14T08:23:55Z' + - 'Ref A: B927969926BC40D7A3F2D4E4110DCED8 Ref B: PNQ231110908031 Ref C: 2025-11-12T07:45:19Z' x-powered-by: - ASP.NET status: @@ -4762,10 +4778,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+MyCustomKeyValue123456789 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+MyCustomKeyValue123456789 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -4776,7 +4792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:23:59 GMT + - Wed, 12 Nov 2025 07:45:23 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -4802,28 +4818,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:01 GMT + - Wed, 12 Nov 2025 07:45:24 GMT expires: - '-1' pragma: @@ -4836,10 +4852,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D129F56368794B8A88D1F5AA1A098986 Ref B: JKT201051406036 Ref C: 2025-10-14T08:24:01Z' + - 'Ref A: 3C63F167651242F2A85792157E05D412 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:24Z' x-powered-by: - ASP.NET status: @@ -4859,28 +4875,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:03 GMT + - Wed, 12 Nov 2025 07:45:24 GMT expires: - '-1' pragma: @@ -4893,10 +4909,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: EC69C2A7AE6045388658EBDD56040B3A Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:02Z' + - 'Ref A: 484C108CA842480792DFDFA5D45DA9DB Ref B: PNQ231110907031 Ref C: 2025-11-12T07:45:24Z' x-powered-by: - ASP.NET status: @@ -4916,29 +4932,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:03 GMT + - Wed, 12 Nov 2025 07:45:25 GMT expires: - '-1' pragma: @@ -4952,11 +4968,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/cb192d08-ae49-49d7-9f17-2ec4a2a6cdb5 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7760d970-3262-468a-ac68-e9666ffa050f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D40A38D6A68745A5AEDBDB9884316458 Ref B: JKT201051406034 Ref C: 2025-10-14T08:24:03Z' + - 'Ref A: 1F7757AA7FFF422ABD8DFC8C7E81A905 Ref B: PNQ231110909040 Ref C: 2025-11-12T07:45:25Z' x-powered-by: - ASP.NET status: @@ -4976,29 +4992,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:04 GMT + - Wed, 12 Nov 2025 07:45:25 GMT expires: - '-1' pragma: @@ -5012,11 +5028,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/dcf06f57-d5d5-4cc6-a830-6ebba4b21de3 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d7c30a65-05a1-4a00-8e98-19bf57ed21c4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 61682C7A10F0472EA180F5FFEAD00737 Ref B: JKT201051407060 Ref C: 2025-10-14T08:24:04Z' + - 'Ref A: AB2097BFD21342528BAE11811A193BCA Ref B: PNQ231110906054 Ref C: 2025-11-12T07:45:25Z' x-powered-by: - ASP.NET status: @@ -5038,27 +5054,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:06.8249714Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:26.0768833Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:06 GMT + - Wed, 12 Nov 2025 07:45:25 GMT expires: - '-1' pragma: @@ -5072,13 +5088,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/eabe36cd-976c-4ad9-84ad-3b8c86d0b598 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/511695ea-c82f-47e7-b34a-2df61af4026e + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 1F035E90624B4FE8AC0D93EF6692E2CF Ref B: JKT201051407034 Ref C: 2025-10-14T08:24:05Z' + - 'Ref A: 3EA71B3B5FCA4810825E728E6DAF04E7 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:25Z' x-powered-by: - ASP.NET status: @@ -5098,10 +5114,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -5112,7 +5128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:10 GMT + - Wed, 12 Nov 2025 07:45:28 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -5138,28 +5154,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:11 GMT + - Wed, 12 Nov 2025 07:45:29 GMT expires: - '-1' pragma: @@ -5172,10 +5188,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 8754F1DB6F374CA781A3816A691CF50E Ref B: JKT201051407060 Ref C: 2025-10-14T08:24:11Z' + - 'Ref A: 77257950D1E74809A8C63B07AAF386E4 Ref B: PNQ231110907036 Ref C: 2025-11-12T07:45:30Z' x-powered-by: - ASP.NET status: @@ -5195,28 +5211,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:11 GMT + - Wed, 12 Nov 2025 07:45:30 GMT expires: - '-1' pragma: @@ -5229,10 +5245,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5BC3ED4842F34BE197AAEDDC4C1917EF Ref B: JKT201051406031 Ref C: 2025-10-14T08:24:12Z' + - 'Ref A: AA2F473391C74DE4BE6266596E8E5A97 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:30Z' x-powered-by: - ASP.NET status: @@ -5252,29 +5268,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:13 GMT + - Wed, 12 Nov 2025 07:45:30 GMT expires: - '-1' pragma: @@ -5288,11 +5304,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/4cf66143-4984-43b0-85f7-916674fa454c - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/931658ad-9182-4dd4-b63c-c4e7a49f8b6f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: ED52D00B43DA418C8F68DF1B5FA5B4F0 Ref B: JKT201051406040 Ref C: 2025-10-14T08:24:13Z' + - 'Ref A: 4E81B4C0586C4FFCB579AFD48C840BD5 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:31Z' x-powered-by: - ASP.NET status: @@ -5312,29 +5328,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:15 GMT + - Wed, 12 Nov 2025 07:45:32 GMT expires: - '-1' pragma: @@ -5348,11 +5364,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e0920748-4013-4e6d-93b2-32ddc28a7dba - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/de7318f4-ff74-4f02-ae42-56466e76c00f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B547FD5BE4914F36809EBCAD9447CCA3 Ref B: JKT201051407023 Ref C: 2025-10-14T08:24:14Z' + - 'Ref A: C1275D41E0964E51824A4AD8C80A0359 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:31Z' x-powered-by: - ASP.NET status: @@ -5374,27 +5390,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:17.1950134Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:33.3084076Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:16 GMT + - Wed, 12 Nov 2025 07:45:32 GMT expires: - '-1' pragma: @@ -5408,13 +5424,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e48ddb77-702b-41d5-9e2f-c7abbb32cfd8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/08126620-aee0-4504-8659-b65e152f1eb3 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 11BBC8C448B443939135DF8655CB3AC7 Ref B: JKT201051407029 Ref C: 2025-10-14T08:24:16Z' + - 'Ref A: A062FFE6E72E46CB94E355B09B9076BE Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:32Z' x-powered-by: - ASP.NET status: @@ -5434,10 +5450,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+hostKey+--key-name+mycustomkey+--key-value+MyHostKeyValue123456789 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+hostKey+--key-name+mycustomkey+--key-value+MyHostKeyValue123456789 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -5448,7 +5464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:20 GMT + - Wed, 12 Nov 2025 07:45:36 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -5474,28 +5490,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:22 GMT + - Wed, 12 Nov 2025 07:45:37 GMT expires: - '-1' pragma: @@ -5508,10 +5524,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 2D30495EC4724650B05C20B37C149E2A Ref B: JKT201051407052 Ref C: 2025-10-14T08:24:22Z' + - 'Ref A: 92BB6808F01F4B908C462D4A0981F4CD Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:38Z' x-powered-by: - ASP.NET status: @@ -5531,28 +5547,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:23 GMT + - Wed, 12 Nov 2025 07:45:37 GMT expires: - '-1' pragma: @@ -5565,10 +5581,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F17842DB079D45DD8C19C23FC252DAB6 Ref B: JKT201051407054 Ref C: 2025-10-14T08:24:23Z' + - 'Ref A: 3569776B6F4C499C8C144C70F2DE38E1 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:38Z' x-powered-by: - ASP.NET status: @@ -5588,29 +5604,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:25 GMT + - Wed, 12 Nov 2025 07:45:38 GMT expires: - '-1' pragma: @@ -5624,11 +5640,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d4e6f079-82e9-40e0-a054-4510481a0b53 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e961feab-5cd5-412b-a63e-a8b0cf67dad3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: AE474C7A35F943B5926D7BC5906CE748 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:24Z' + - 'Ref A: 337C326230FD4B669520127407BC23BF Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:38Z' x-powered-by: - ASP.NET status: @@ -5648,29 +5664,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:26 GMT + - Wed, 12 Nov 2025 07:45:38 GMT expires: - '-1' pragma: @@ -5684,11 +5700,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/da5520eb-5262-47ed-8fe0-d68e3edd5054 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c98eacce-5660-4ea8-941e-f5a3f4382e5b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 67F2E5D4421E459D923223AD6376C597 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:26Z' + - 'Ref A: 393E6453024249738DB90665D6868E6B Ref B: PNQ231110908031 Ref C: 2025-11-12T07:45:39Z' x-powered-by: - ASP.NET status: @@ -5710,27 +5726,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:27.6961632Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:39.6728182Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:27 GMT + - Wed, 12 Nov 2025 07:45:39 GMT expires: - '-1' pragma: @@ -5744,13 +5760,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/1de738fc-99ec-4354-ba8c-4a762b2aa7b9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9d5e7199-5aa7-474b-8745-67256f1e1d91 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 353FDEDD0AFC4AE0ABC1E200F2708D45 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:26Z' + - 'Ref A: 2FA840ECEF114D86A9FA0F51F86BDC3D Ref B: PNQ231110906025 Ref C: 2025-11-12T07:45:39Z' x-powered-by: - ASP.NET status: @@ -5770,10 +5786,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+mycustomkey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+mycustomkey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -5784,7 +5800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:31 GMT + - Wed, 12 Nov 2025 07:45:43 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -5810,28 +5826,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:32 GMT + - Wed, 12 Nov 2025 07:45:44 GMT expires: - '-1' pragma: @@ -5844,10 +5860,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: BB12AA54B18A4AE1AA10E38CC27C473A Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:32Z' + - 'Ref A: B860274BB47244D894CD9EE2D1681997 Ref B: PNQ231110907029 Ref C: 2025-11-12T07:45:43Z' x-powered-by: - ASP.NET status: @@ -5867,28 +5883,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:33 GMT + - Wed, 12 Nov 2025 07:45:43 GMT expires: - '-1' pragma: @@ -5901,10 +5917,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 2280B7B1B37541C0A46172765EA51DEF Ref B: JKT201051407052 Ref C: 2025-10-14T08:24:33Z' + - 'Ref A: 24285A213D0B4799A895AE78C853AF60 Ref B: PNQ231110907036 Ref C: 2025-11-12T07:45:44Z' x-powered-by: - ASP.NET status: @@ -5924,29 +5940,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:33 GMT + - Wed, 12 Nov 2025 07:45:44 GMT expires: - '-1' pragma: @@ -5960,11 +5976,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/65558184-38ed-4840-b48b-4d7a9a753b56 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/00fcd1c1-9f80-42cb-b54d-00c83a96c6e4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F303416BC21948BBB7D2FB4D8F0320DF Ref B: JKT201051406031 Ref C: 2025-10-14T08:24:34Z' + - 'Ref A: 1A56CD5690C54887AA24F12C5DD808E5 Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:44Z' x-powered-by: - ASP.NET status: @@ -5984,29 +6000,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:35 GMT + - Wed, 12 Nov 2025 07:45:44 GMT expires: - '-1' pragma: @@ -6020,11 +6036,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/08999058-2958-4458-a479-56901d140ef4 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b8367441-e256-4130-8f1a-674b3d04a79c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 69AD258D123B4B5889EA3450759AF995 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:34Z' + - 'Ref A: 4E8C2DE4610548039EF8DC04FCE4EDB3 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:44Z' x-powered-by: - ASP.NET status: @@ -6046,27 +6062,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:36.2778769Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:45.5556878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:36 GMT + - Wed, 12 Nov 2025 07:45:44 GMT expires: - '-1' pragma: @@ -6080,13 +6096,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/843bb88c-2420-42ee-bc63-d2f5e43e3a0e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/eca059be-9a99-4223-a5d6-b25714f603a4 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 31F6830B03EA475687B3C76FAC11FA45 Ref B: JKT201051407052 Ref C: 2025-10-14T08:24:35Z' + - 'Ref A: 09EBC88E772E48B8AD3748F9CD1A3F32 Ref B: PNQ231110907031 Ref C: 2025-11-12T07:45:45Z' x-powered-by: - ASP.NET status: @@ -6106,10 +6122,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+systemKey+--key-name+mycustomkey+--key-value+MySystemKeyValue123456789 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+systemKey+--key-name+mycustomkey+--key-value+MySystemKeyValue123456789 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -6120,7 +6136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:40 GMT + - Wed, 12 Nov 2025 07:45:48 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -6146,28 +6162,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:41 GMT + - Wed, 12 Nov 2025 07:45:49 GMT expires: - '-1' pragma: @@ -6180,10 +6196,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 97644662AB0844F08AB2E306E76F1365 Ref B: JKT201051406062 Ref C: 2025-10-14T08:24:41Z' + - 'Ref A: 1AD6EBD6374A4EAE911406155A937505 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:45:50Z' x-powered-by: - ASP.NET status: @@ -6203,28 +6219,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:42 GMT + - Wed, 12 Nov 2025 07:45:50 GMT expires: - '-1' pragma: @@ -6237,10 +6253,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D41F4FF800E44E0E875F370C87FD8136 Ref B: JKT201051407040 Ref C: 2025-10-14T08:24:42Z' + - 'Ref A: 44B81B5BD00B455F8F719F42F0447931 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:50Z' x-powered-by: - ASP.NET status: @@ -6260,29 +6276,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:45 GMT + - Wed, 12 Nov 2025 07:45:50 GMT expires: - '-1' pragma: @@ -6296,11 +6312,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0537b4b9-8ba0-472c-bca0-e5f9c57d8f86 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c2dc8de9-b0c9-450a-ba87-c20cc033c64f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3469A7A5813D4FDAB9296251CD8AF647 Ref B: JKT201051407054 Ref C: 2025-10-14T08:24:43Z' + - 'Ref A: D566CF08C9BE450DBE6B4D6DD621251A Ref B: PNQ231110907052 Ref C: 2025-11-12T07:45:50Z' x-powered-by: - ASP.NET status: @@ -6320,29 +6336,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:46 GMT + - Wed, 12 Nov 2025 07:45:51 GMT expires: - '-1' pragma: @@ -6356,11 +6372,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0b3d7593-e2d5-4d55-b3d1-6cdb43f30466 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/09422835-cf67-4109-a86d-ef820cb8f869 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: C03BFEE34B3448A59BE5C0162DB55143 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:46Z' + - 'Ref A: 2E47BFB876C94CC9BC04268D0C6F1605 Ref B: PNQ231110906040 Ref C: 2025-11-12T07:45:51Z' x-powered-by: - ASP.NET status: @@ -6382,27 +6398,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:47.7212541Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:52.1483358Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:47 GMT + - Wed, 12 Nov 2025 07:45:51 GMT expires: - '-1' pragma: @@ -6416,13 +6432,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/4493e944-2679-467e-a02f-f14c1aa05ea1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/aa411088-39ea-4e19-91ad-13944b3d24f8 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 67C2A15298A1444F8DA29A6B517B94F1 Ref B: JKT201051407034 Ref C: 2025-10-14T08:24:47Z' + - 'Ref A: 2554E731E58B40B995749F833EFF94FD Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45:51Z' x-powered-by: - ASP.NET status: @@ -6442,10 +6458,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+systemKey+--key-name+mycustomkey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+systemKey+--key-name+mycustomkey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -6456,7 +6472,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:50 GMT + - Wed, 12 Nov 2025 07:45:54 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -6482,28 +6498,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:53 GMT + - Wed, 12 Nov 2025 07:45:56 GMT expires: - '-1' pragma: @@ -6516,10 +6532,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D8600132B7DF45CEB24317405D80AC1F Ref B: JKT201051407031 Ref C: 2025-10-14T08:24:52Z' + - 'Ref A: 799CFD8F25D4418FAA55F0B13378F512 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45:56Z' x-powered-by: - ASP.NET status: @@ -6539,28 +6555,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:54 GMT + - Wed, 12 Nov 2025 07:45:56 GMT expires: - '-1' pragma: @@ -6573,10 +6589,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: CF652306A9A748ADA2A95317D7F3B91F Ref B: JKT201051406036 Ref C: 2025-10-14T08:24:54Z' + - 'Ref A: 8416D220B8AA4D599850C27FA1FDD586 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:45:56Z' x-powered-by: - ASP.NET status: @@ -6596,29 +6612,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:54 GMT + - Wed, 12 Nov 2025 07:45:57 GMT expires: - '-1' pragma: @@ -6632,11 +6648,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3160c094-36cb-4a05-aac1-ac76d9529e95 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d4fa6576-3db5-4f94-88a7-8de646be03a1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 96B6B5311DBF4D2EB93ABE4A64686D62 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:55Z' + - 'Ref A: A96D0AFFF02C4D999DAE700D33E9F36E Ref B: PNQ231110907029 Ref C: 2025-11-12T07:45:56Z' x-powered-by: - ASP.NET status: @@ -6656,29 +6672,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:56 GMT + - Wed, 12 Nov 2025 07:45:57 GMT expires: - '-1' pragma: @@ -6692,11 +6708,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9d00d13d-6e01-49da-aab3-a0d9df0276b9 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c49d4886-adc1-4e61-a726-2afb59ad0a1d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 66904EE772D147C890E9828FAC036F94 Ref B: JKT201051406034 Ref C: 2025-10-14T08:24:56Z' + - 'Ref A: 11437663B7D64F6FB5326A232D06595D Ref B: PNQ231110906042 Ref C: 2025-11-12T07:45:57Z' x-powered-by: - ASP.NET status: @@ -6718,27 +6734,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:24:57.5877225Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:57.9036129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:24:56 GMT + - Wed, 12 Nov 2025 07:45:57 GMT expires: - '-1' pragma: @@ -6752,13 +6768,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a8859fed-e7a1-4174-adb4-8d6cb4c896f6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/470f8911-2cdf-4a75-b23f-7cdff7a37132 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: 2B7BD1EDC298479DBEEEB1F5E8873973 Ref B: JKT201051406052 Ref C: 2025-10-14T08:24:57Z' + - 'Ref A: 06F833173B7B40BCB89A79151752E234 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:57Z' x-powered-by: - ASP.NET status: @@ -6778,10 +6794,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --key-value --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+UpdatedKeyValue987654321 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+UpdatedKeyValue987654321 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -6792,7 +6808,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:01 GMT + - Wed, 12 Nov 2025 07:46:00 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -6818,28 +6834,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:02 GMT + - Wed, 12 Nov 2025 07:46:02 GMT expires: - '-1' pragma: @@ -6852,10 +6868,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: EBCEE20672C8438F9D792E949E97FFCE Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:02Z' + - 'Ref A: 924392E18795427084880A4389767613 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:46:02Z' x-powered-by: - ASP.NET status: @@ -6875,28 +6891,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:03 GMT + - Wed, 12 Nov 2025 07:46:02 GMT expires: - '-1' pragma: @@ -6909,10 +6925,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D5F8C206D16E462B819F1D2AC747768B Ref B: JKT201051407054 Ref C: 2025-10-14T08:25:03Z' + - 'Ref A: E193993393474832941C48B4D3BB3C1E Ref B: PNQ231110908023 Ref C: 2025-11-12T07:46:02Z' x-powered-by: - ASP.NET status: @@ -6932,29 +6948,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:04 GMT + - Wed, 12 Nov 2025 07:46:02 GMT expires: - '-1' pragma: @@ -6968,11 +6984,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c24ab0e7-e6b1-4537-a479-4d618e753732 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/4557c737-d56a-4901-9fd1-d8031e439e01 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B627DB5070CB4B709F0CE3BE9160C524 Ref B: JKT201051407042 Ref C: 2025-10-14T08:25:04Z' + - 'Ref A: 7EABE415CC39483FA15C22E58F49C777 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:46:02Z' x-powered-by: - ASP.NET status: @@ -6992,29 +7008,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec","debugEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2849' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:05 GMT + - Wed, 12 Nov 2025 07:46:03 GMT expires: - '-1' pragma: @@ -7028,11 +7044,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/80b77b78-f08c-41be-9ddd-cc2f024e881d - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/420643b8-0ea9-4d1f-83f8-f18b482919d8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3D0629C2E7C94A949F9116C5D006E942 Ref B: JKT201051407060 Ref C: 2025-10-14T08:25:05Z' + - 'Ref A: BA2BF1362630473FA34AFEE589E9FBBD Ref B: PNQ231110909040 Ref C: 2025-11-12T07:46:03Z' x-powered-by: - ASP.NET status: @@ -7054,27 +7070,27 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: POST - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"Central US EUAP","properties":{"token":***,"expires":"2025-10-14T09:25:06.9636181Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:46:03.6345366Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '879' + - '865' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:06 GMT + - Wed, 12 Nov 2025 07:46:02 GMT expires: - '-1' pragma: @@ -7088,13 +7104,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/c22b6e53-7d3b-4946-be60-a3e7bc9036a5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9ba0e694-7338-4827-a44f-e307f31f2f6f + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' - x-ms-throttling-version: - - v2 x-msedge-ref: - - 'Ref A: E2F40FBB56E247B1B542366B964198C0 Ref B: JKT201051406060 Ref C: 2025-10-14T08:25:06Z' + - 'Ref A: 1CFECD1F181F4272B9DE7DCAE276DB70 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:46:03Z' x-powered-by: - ASP.NET status: @@ -7114,10 +7130,10 @@ interactions: ParameterSetName: - -g -n --key-type --key-name --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -7128,7 +7144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:11 GMT + - Wed, 12 Nov 2025 07:46:06 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -7154,10 +7170,10 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-rg/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-rg/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group @@ -7170,7 +7186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:11 GMT + - Wed, 12 Nov 2025 07:46:07 GMT expires: - '-1' pragma: @@ -7184,7 +7200,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 383C0EA9F0084F119C235701C9F6CAC3 Ref B: JKT201051406060 Ref C: 2025-10-14T08:25:12Z' + - 'Ref A: 0F5BD0AB84AC4836AFDE4D23D79E17EE Ref B: PNQ231110907052 Ref C: 2025-11-12T07:46:07Z' status: code: 404 message: Not Found @@ -7202,10 +7218,10 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' @@ -7219,7 +7235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:13 GMT + - Wed, 12 Nov 2025 07:46:08 GMT expires: - '-1' pragma: @@ -7233,7 +7249,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: F08A7DCCD90041E1B5EF1707931EBF60 Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:13Z' + - 'Ref A: 61788E9302C5448E8B9F5702EE875441 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:46:08Z' status: code: 404 message: Not Found @@ -7251,28 +7267,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:15 GMT + - Wed, 12 Nov 2025 07:46:10 GMT expires: - '-1' pragma: @@ -7285,10 +7301,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 4CC3C85D44314D5397A13BC79F1CB02C Ref B: JKT201051407062 Ref C: 2025-10-14T08:25:15Z' + - 'Ref A: 7B6C7FE4A2544D91A6832546F2E31883 Ref B: PNQ231110909029 Ref C: 2025-11-12T07:46:09Z' x-powered-by: - ASP.NET status: @@ -7308,28 +7324,28 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:16 GMT + - Wed, 12 Nov 2025 07:46:10 GMT expires: - '-1' pragma: @@ -7342,10 +7358,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 28FC164227CF4DA9A1E8144599FAB124 Ref B: JKT201051406025 Ref C: 2025-10-14T08:25:16Z' + - 'Ref A: BC0A86AFD077472CB3A1B767932601CE Ref B: PNQ231110907036 Ref C: 2025-11-12T07:46:10Z' x-powered-by: - ASP.NET status: @@ -7365,29 +7381,29 @@ interactions: ParameterSetName: - -g -n --key-type User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:17 GMT + - Wed, 12 Nov 2025 07:46:10 GMT expires: - '-1' pragma: @@ -7401,11 +7417,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d64b2db6-cf11-4fa8-9c31-9adec72dcfd5 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/dd73a0b9-c430-4b92-a0d7-7b5376f9fdb4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 52C864E931624A1A927674E3F0F27CD2 Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:17Z' + - 'Ref A: 1AB104EF872B41A58AC2545507294693 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:46:11Z' x-powered-by: - ASP.NET status: @@ -7425,28 +7441,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:19 GMT + - Wed, 12 Nov 2025 07:46:12 GMT expires: - '-1' pragma: @@ -7459,10 +7475,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6C242DA271C049B483878E0321B58E0F Ref B: JKT201051407031 Ref C: 2025-10-14T08:25:19Z' + - 'Ref A: 535408145040496B8D7633E4AA970AE0 Ref B: PNQ231110908023 Ref C: 2025-11-12T07:46:12Z' x-powered-by: - ASP.NET status: @@ -7482,28 +7498,28 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"Central - US EUAP","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-14T08:21:58.6854788","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-14T08:21:58.6854788"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-v1-northcentralusstage","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["52.141.229.141"],"latestRevisionName":"functionapp000003--b8487am","latestReadyRevisionName":"functionapp000003--b8487am","latestRevisionFqdn":"functionapp000003--b8487am.graycoast-0c716230.centraluseuap.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.graycoast-0c716230.centraluseuap.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3100' + - '3027' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:21 GMT + - Wed, 12 Nov 2025 07:46:12 GMT expires: - '-1' pragma: @@ -7516,10 +7532,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 535997EB2C9C42008D5EA3A0137C6B24 Ref B: JKT201051406054 Ref C: 2025-10-14T08:25:20Z' + - 'Ref A: 311BA92F92ED4C3C81F622F5888940B0 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:46:12Z' x-powered-by: - ASP.NET status: @@ -7539,29 +7555,29 @@ interactions: ParameterSetName: - -g -n --key-type --key-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.78.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m","name":"functionapp000003--b8487am-688f7cf8d9-ppc8m","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-10-14T08:22:07Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://d15f6f4b40c754c4a6a96d4b4b249bdd15d09659cfd1da2b1c14669a4a99ee74","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 10/14/2025 8:22:14 AM.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://cffe57a4d88133347fd2e7ef6877745b5730dfb264a6c0e456955c45bb362c52","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/logstream","execEndpoint":"wss://centraluseuap.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--b8487am/replicas/functionapp000003--b8487am-688f7cf8d9-ppc8m/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2252' + - '2228' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Oct 2025 08:25:21 GMT + - Wed, 12 Nov 2025 07:46:13 GMT expires: - '-1' pragma: @@ -7575,11 +7591,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6e7cae27-0af8-4d0f-a5c9-aae995db9892 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0f8cfa74-ad52-419e-807e-25149c3b9b72 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 0AFC296E708145E59EA136F11F1B161A Ref B: JKT201051406052 Ref C: 2025-10-14T08:25:22Z' + - 'Ref A: A746B1D3CF3C4C10AA3D383AFDBD6CB5 Ref B: PNQ231110908062 Ref C: 2025-11-12T07:46:12Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml index dd163e0dc91..feab041b6a8 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml @@ -13,304 +13,311 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -318,11 +325,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:54:52 GMT + - Wed, 12 Nov 2025 07:48:39 GMT expires: - '-1' pragma: @@ -333,10 +340,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1748513C80254EB6A281BFF6819DD39C Ref B: MAA201060515035 Ref C: 2025-10-09T13:54:51Z' + - 'Ref A: 648CB5E49F40406B8C75EDBD4766E722 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:48:40Z' status: code: 200 message: OK @@ -354,28 +361,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1892' + - '1795' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:54:53 GMT + - Wed, 12 Nov 2025 07:48:40 GMT expires: - '-1' pragma: @@ -388,10 +395,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 34E06D7C93DC40A1A097F235D582F98A Ref B: MAA201060516037 Ref C: 2025-10-09T13:54:53Z' + - 'Ref A: EA4CA947970344CDBCB6843CB2F5E614 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:48:40Z' x-powered-by: - ASP.NET status: @@ -411,304 +418,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -716,11 +730,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:54:55 GMT + - Wed, 12 Nov 2025 07:48:42 GMT expires: - '-1' pragma: @@ -731,10 +745,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1509775ABFF9447B886C51D0739BD660 Ref B: MAA201060515039 Ref C: 2025-10-09T13:54:55Z' + - 'Ref A: 0B6DC3560CB7408A95FCB2206EAA5EBE Ref B: PNQ231110906034 Ref C: 2025-11-12T07:48:42Z' status: code: 200 message: OK @@ -752,28 +766,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1892' + - '1795' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:54:57 GMT + - Wed, 12 Nov 2025 07:48:42 GMT expires: - '-1' pragma: @@ -786,10 +800,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: AD6BB20E331647B5B9D9D9AF4193ACC3 Ref B: MAA201060514009 Ref C: 2025-10-09T13:54:57Z' + - 'Ref A: 252C34EA31DF4192A84E41A2427CA5E5 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:48:42Z' x-powered-by: - ASP.NET status: @@ -809,304 +823,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1114,11 +1135,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:54:59 GMT + - Wed, 12 Nov 2025 07:48:42 GMT expires: - '-1' pragma: @@ -1129,16 +1150,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5119F3C8E8FC4F2B8E261306E12FB0DA Ref B: MAA201060514011 Ref C: 2025-10-09T13:54:58Z' + - 'Ref A: 5CE46521F1A4434D82BB95EA5E35DA19 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:48:42Z' status: code: 200 message: OK - request: - body: '{"location": "North Central US (Stage)", "identity": null, "properties": - {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + body: '{"location": "East US 2", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2", "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": @@ -1158,36 +1179,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1018' + - '979' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo cache-control: - no-cache content-length: - - '2628' + - '3047' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:02 GMT + - Wed, 12 Nov 2025 07:48:43 GMT expires: - '-1' pragma: @@ -1201,13 +1222,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/431c682c-19a1-44c5-bdfb-109d2e7c4b9d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/97946c61-0c01-467e-b2c1-0fbe3a80ba32 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 62E0A872FB2748A9B82EC1550A988A7E Ref B: MAA201060515033 Ref C: 2025-10-09T13:55:01Z' + - 'Ref A: 3173E9F465EC4136811016AA007248CA Ref B: PNQ231110906040 Ref C: 2025-11-12T07:48:43Z' x-powered-by: - ASP.NET status: @@ -1227,27 +1246,85 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:48:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/acdbf4d0-5b43-4d66-8329-4d8e2ec04b72 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8536EE349F24401BA4C14EE776D798DC Ref B: PNQ231110908031 Ref C: 2025-11-12T07:48:44Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:03 GMT + - Wed, 12 Nov 2025 07:48:46 GMT expires: - '-1' pragma: @@ -1261,11 +1338,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/7cb7f3a5-48ae-4285-9884-56d9046ed751 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7be4a11b-84e0-4cba-bfd1-c7e141af7b80 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 2F259C77FD3D4FF79A527FC46D39AC2D Ref B: MAA201060516027 Ref C: 2025-10-09T13:55:03Z' + - 'Ref A: 2CE51E4E8D4D41089BBA971EFF928339 Ref B: PNQ231110906025 Ref C: 2025-11-12T07:48:46Z' x-powered-by: - ASP.NET status: @@ -1285,27 +1362,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:08 GMT + - Wed, 12 Nov 2025 07:48:49 GMT expires: - '-1' pragma: @@ -1319,11 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e7de68af-6456-410c-9aa9-3f525b477bfa - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c0ee1d35-d949-4199-9908-3236fd31456d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' x-msedge-ref: - - 'Ref A: 0DD8330B529E4455B35E0B9B6342D302 Ref B: MAA201060515033 Ref C: 2025-10-09T13:55:07Z' + - 'Ref A: BD3B9BE1A50B4F2B99C7ED9D987F5786 Ref B: PNQ231110906060 Ref C: 2025-11-12T07:48:49Z' x-powered-by: - ASP.NET status: @@ -1343,27 +1420,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:10 GMT + - Wed, 12 Nov 2025 07:48:52 GMT expires: - '-1' pragma: @@ -1377,11 +1454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/33f14c09-7b15-4539-9709-61c5a52e566e - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/bbb6f8b9-c459-4f52-ba01-206f484b7180 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6053AFA6736D47119BBA692E9EB1D7ED Ref B: MAA201060516047 Ref C: 2025-10-09T13:55:11Z' + - 'Ref A: 931EDE960E564D098EE8550F0710E43F Ref B: PNQ231110906023 Ref C: 2025-11-12T07:48:51Z' x-powered-by: - ASP.NET status: @@ -1401,27 +1478,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"InProgress","startTime":"2025-10-09T13:55:02.9309005"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:15 GMT + - Wed, 12 Nov 2025 07:48:54 GMT expires: - '-1' pragma: @@ -1435,11 +1512,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/83ecd55d-4bae-42cb-94d0-29f519558111 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7c1b6cef-0a81-4b05-8fa9-7693a31d141e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 59F412F9E8B9452CB6CFA838C6C62B87 Ref B: MAA201060516033 Ref C: 2025-10-09T13:55:14Z' + - 'Ref A: D73A3A4B09D9453DA8BD54AEAB0D8583 Ref B: PNQ231110907042 Ref C: 2025-11-12T07:48:54Z' x-powered-by: - ASP.NET status: @@ -1459,27 +1536,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956149030673960&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=lPFgjhaUcIKlXV65NhZps9JaT89VfRNmpndjujpMXFExRDaLMfXx0ogc1wf3oYMJUamVOqIEIi3WmuATP5m07A87QarGI4eTPYqgIHqnI1ah3o4X814C5m7vgwk3Sfh00CYDkSS5ZhYHjE0HSBoK_ssEkP9xRtTjQtQNGEEs81m4P7__dF7dCDcEMoT7a65fXsJyjzAV0u1EZZJeJ9BuY71XWkXjJJWzwzciqvQIfJaJiFHbysl-JSfBNsHHMUfu6wmsv5kG9AKwBuHVKBncPzl-F3KCMxLs3gf5lXtT_v9_XS2bjSH0-X6LuzGVDD9aIBorYqhjSe7JvHWnZMItBg&h=B_tl08CLgB1EEBPwzZUShAZ37SkA07AFazCVmd1it0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/d4ff4063-87fe-468f-adb2-a8b38c10f440","name":"d4ff4063-87fe-468f-adb2-a8b38c10f440","status":"Succeeded","startTime":"2025-10-09T13:55:02.9309005"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"Succeeded","startTime":"2025-11-12T07:48:44.1548662"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:18 GMT + - Wed, 12 Nov 2025 07:48:57 GMT expires: - '-1' pragma: @@ -1493,11 +1570,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d8f22d6e-c8cf-4c08-a401-7354959ca5fc - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d6e14c18-5826-4336-8b0d-4267a339347f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 75E01D63F5134BB18357B75A588435FC Ref B: MAA201060513047 Ref C: 2025-10-09T13:55:18Z' + - 'Ref A: ADF8E99BDC714DF49644736CD9E6F6D4 Ref B: PNQ231110907029 Ref C: 2025-11-12T07:48:57Z' x-powered-by: - ASP.NET status: @@ -1517,28 +1594,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3333' + - '3722' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:20 GMT + - Wed, 12 Nov 2025 07:48:58 GMT expires: - '-1' pragma: @@ -1551,10 +1628,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: A7A560907C6346EAB5A98AB950634B76 Ref B: MAA201060516031 Ref C: 2025-10-09T13:55:19Z' + - 'Ref A: A6EF075DAC1A4ACF84493D110DF9BFCA Ref B: PNQ231110906060 Ref C: 2025-11-12T07:48:57Z' x-powered-by: - ASP.NET status: @@ -1574,27 +1651,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn","name":"containerapp000002--4peg4mn","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T13:55:10+00:00","fqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun","name":"containerapp000002--xyz5uun","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T07:48:52+00:00","fqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1043' + - '962' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:55:52 GMT + - Wed, 12 Nov 2025 07:49:29 GMT expires: - '-1' pragma: @@ -1608,11 +1685,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/3dba5a12-df62-4a1c-9ecf-1b8c80fb1641 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/876c0102-03c8-4e62-96df-b10d9f6f2a00 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: A0EDFF46389446AAA0B0868AA3AF6EEC Ref B: MAA201060516051 Ref C: 2025-10-09T13:55:51Z' + - 'Ref A: F9662FCE88D04DFEB4B100F666DC85FE Ref B: PNQ231110907036 Ref C: 2025-11-12T07:49:29Z' x-powered-by: - ASP.NET status: @@ -1632,28 +1709,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3333' + - '3722' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:56:24 GMT + - Wed, 12 Nov 2025 07:50:01 GMT expires: - '-1' pragma: @@ -1666,10 +1743,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3473E3F440164A719FED6BE4FEAAA61D Ref B: MAA201060515047 Ref C: 2025-10-09T13:56:24Z' + - 'Ref A: BCC9BBD354B74A1283915B1AFB1B1D49 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:50:01Z' x-powered-by: - ASP.NET status: @@ -1689,28 +1766,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3333' + - '3722' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:56:26 GMT + - Wed, 12 Nov 2025 07:50:02 GMT expires: - '-1' pragma: @@ -1723,10 +1800,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 11B709C9077541D3956FE709A35E87E6 Ref B: MAA201060514031 Ref C: 2025-10-09T13:56:25Z' + - 'Ref A: 6217402758144E868AD636C5BAD4BBAE Ref B: PNQ231110908034 Ref C: 2025-11-12T07:50:02Z' x-powered-by: - ASP.NET status: @@ -1746,24 +1823,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '539' + - '528' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:56:29 GMT + - Wed, 12 Nov 2025 07:50:01 GMT expires: - '-1' pragma: @@ -1777,11 +1854,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b4914be6-e678-4940-a2fe-08786c45c843 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/be62798e-ecb7-43c5-997a-c2739642d8a0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F35193C9C1CE4F8B9F38A39156EF420C Ref B: MAA201060516027 Ref C: 2025-10-09T13:56:27Z' + - 'Ref A: 1393642CC902436C98A312D0D6682486 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:50:02Z' x-powered-by: - ASP.NET status: @@ -1801,28 +1878,28 @@ interactions: ParameterSetName: - -g -n --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3333' + - '3722' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:56:31 GMT + - Wed, 12 Nov 2025 07:50:04 GMT expires: - '-1' pragma: @@ -1835,10 +1912,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 666C072858B54F2599D784A5135BEA78 Ref B: MAA201060516023 Ref C: 2025-10-09T13:56:30Z' + - 'Ref A: F1EC8BD077FD4BA98549D5DA9D3B7DF8 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:50:03Z' x-powered-by: - ASP.NET status: @@ -1858,28 +1935,28 @@ interactions: ParameterSetName: - -g -n --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T13:55:02.7704729","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T13:55:02.7704729"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--4peg4mn","latestReadyRevisionName":"containerapp000002--4peg4mn","latestRevisionFqdn":"containerapp000002--4peg4mn.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3333' + - '3722' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:56:32 GMT + - Wed, 12 Nov 2025 07:50:04 GMT expires: - '-1' pragma: @@ -1892,10 +1969,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 68988787A7044B5B9A7344B987C9281F Ref B: MAA201060515011 Ref C: 2025-10-09T13:56:32Z' + - 'Ref A: 395466CB376F40C2B7B7BD5261DB3377 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:50:04Z' x-powered-by: - ASP.NET status: @@ -1915,24 +1992,24 @@ interactions: ParameterSetName: - -g -n --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions/HttpExample?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions/HttpExample?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--4peg4mn/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '527' + - '516' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 13:56:34 GMT + - Wed, 12 Nov 2025 07:50:04 GMT expires: - '-1' pragma: @@ -1946,11 +2023,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ef016dde-1216-4ab5-8903-b6932a75fefe - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/688d1908-d6ba-4d00-9600-818714dadf39 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 044B424E5E3446CCADF93EF952475765 Ref B: MAA201060513045 Ref C: 2025-10-09T13:56:33Z' + - 'Ref A: 55FE8EEF172649428D7B4555890F134C Ref B: PNQ231110906060 Ref C: 2025-11-12T07:50:04Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml index cb8a877ee6b..f2fc1f11532 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml @@ -13,304 +13,311 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -318,11 +325,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:00 GMT + - Wed, 12 Nov 2025 08:55:07 GMT expires: - '-1' pragma: @@ -333,10 +340,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: C97998D3307C439394C055841C034C67 Ref B: MAA201060514021 Ref C: 2025-10-09T14:15:00Z' + - 'Ref A: 41C3EA7F31014C43A3B2A0294C596E19 Ref B: PNQ231110908036 Ref C: 2025-11-12T08:55:07Z' status: code: 200 message: OK @@ -354,28 +361,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1892' + - '1795' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:02 GMT + - Wed, 12 Nov 2025 08:55:08 GMT expires: - '-1' pragma: @@ -388,10 +395,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D83567F207924A5AA66FF894E0E9F59E Ref B: MAA201060513009 Ref C: 2025-10-09T14:15:01Z' + - 'Ref A: 7B0548C01413437BB162C391079809B2 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:55:07Z' x-powered-by: - ASP.NET status: @@ -411,304 +418,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -716,11 +730,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:04 GMT + - Wed, 12 Nov 2025 08:55:09 GMT expires: - '-1' pragma: @@ -731,10 +745,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: EAAC9E2FB06C46F0BFEF96F40C626B51 Ref B: MAA201060516047 Ref C: 2025-10-09T14:15:04Z' + - 'Ref A: 271A79F39FA94E3D981BC9C141300C57 Ref B: PNQ231110908025 Ref C: 2025-11-12T08:55:09Z' status: code: 200 message: OK @@ -752,28 +766,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1892' + - '1795' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:06 GMT + - Wed, 12 Nov 2025 08:55:09 GMT expires: - '-1' pragma: @@ -786,10 +800,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: FA61FC3D40BD43D49E18DE08C9A68742 Ref B: MAA201060516039 Ref C: 2025-10-09T14:15:06Z' + - 'Ref A: D3F91667C7464F78851215F508289D19 Ref B: PNQ231110909034 Ref C: 2025-11-12T08:55:09Z' x-powered-by: - ASP.NET status: @@ -809,304 +823,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1114,11 +1135,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:08 GMT + - Wed, 12 Nov 2025 08:55:10 GMT expires: - '-1' pragma: @@ -1129,16 +1150,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: CDCF75DF55354532A1798499F9385907 Ref B: MAA201060516037 Ref C: 2025-10-09T14:15:07Z' + - 'Ref A: DB3FD6CED10D4B7E9648B8BF02290EA2 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:55:10Z' status: code: 200 message: OK - request: - body: '{"location": "North Central US (Stage)", "identity": null, "properties": - {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + body: '{"location": "East US 2", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2", "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": @@ -1158,36 +1179,36 @@ interactions: Connection: - keep-alive Content-Length: - - '993' + - '954' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc cache-control: - no-cache content-length: - - '2605' + - '3024' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:11 GMT + - Wed, 12 Nov 2025 08:55:16 GMT expires: - '-1' pragma: @@ -1201,13 +1222,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a982ca4c-56b7-4758-a63b-d6990c88b4ca + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/db3ef768-c6a8-45f2-a1ea-5760fefeb524 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 2D7D0A6BE5674C579EFB33D31C7229C3 Ref B: MAA201060515025 Ref C: 2025-10-09T14:15:09Z' + - 'Ref A: DEB266D2720045A79928FAA71872D010 Ref B: PNQ231110908031 Ref C: 2025-11-12T08:55:11Z' x-powered-by: - ASP.NET status: @@ -1227,27 +1246,85 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:55:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/e6b46ced-4bbd-49d1-bb66-50973742a2af + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 64A1F5400813465D8F0E58FCEC66366F Ref B: PNQ231110907040 Ref C: 2025-11-12T08:55:16Z' + 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 + User-Agent: + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"InProgress","startTime":"2025-10-09T14:15:11.454903"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:12 GMT + - Wed, 12 Nov 2025 08:55:19 GMT expires: - '-1' pragma: @@ -1261,11 +1338,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/657fad89-4ed3-4340-ae36-6adaf98f0412 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d4141eae-b665-47d5-8209-ea51ae6d9359 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: CEAAB05D523441F2B4E9DC5DECDEEA29 Ref B: MAA201060514021 Ref C: 2025-10-09T14:15:12Z' + - 'Ref A: 7BC42E6420344E34912CE0803B3BE50F Ref B: PNQ231110908052 Ref C: 2025-11-12T08:55:20Z' x-powered-by: - ASP.NET status: @@ -1285,27 +1362,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"InProgress","startTime":"2025-10-09T14:15:11.454903"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:16 GMT + - Wed, 12 Nov 2025 08:55:22 GMT expires: - '-1' pragma: @@ -1319,11 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0dd8d9bd-6272-44dd-94f6-0deca58203a4 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/264253b3-7c2b-47ca-8458-d5b77687472e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5B46E4868EEB4A728806F0C7BCD3D113 Ref B: MAA201060514049 Ref C: 2025-10-09T14:15:15Z' + - 'Ref A: A1081CDF3EA44EE8996E39BC7205A84D Ref B: PNQ231110909040 Ref C: 2025-11-12T08:55:22Z' x-powered-by: - ASP.NET status: @@ -1343,27 +1420,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"InProgress","startTime":"2025-10-09T14:15:11.454903"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:19 GMT + - Wed, 12 Nov 2025 08:55:25 GMT expires: - '-1' pragma: @@ -1377,11 +1454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/dcd46b2e-6569-4ff9-a597-7976d65fa714 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/f8da6aff-351b-4003-9780-59c0661b6cb5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 7E290B6B56B94C959EFB50D44244F968 Ref B: MAA201060514017 Ref C: 2025-10-09T14:15:19Z' + - 'Ref A: 269D52DB53E04417A56F4A260ABE140B Ref B: PNQ231110906031 Ref C: 2025-11-12T08:55:25Z' x-powered-by: - ASP.NET status: @@ -1401,27 +1478,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161115746557&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=C2fT34GD3vp-49qMyQ5iT04Vu7lk3Kh8LcPgOiKF0JFEqV3MR40Np0Cme-Kf1mbFUSQxV16uNc1TqWLH4Dg-upnFpnAW3p-gNDok32pm0dDFYHcBwCWLomZtB_QyczRDJjdgt_4YUHBSQkJrBOjsqG71ZUZB87Kg7uSSdDBiZ__jOPUSu3pjMRjVjIGY94lLv1GPig3fzLNFkliiWDK7NYOOyOpoCuZUTF-mCnbQiI4SXTBXpJfjGSaQnjfP_SKqVlkW4RohFHSlbWJMLHxkYwTPFSXhdysZs6kbeGzRP3vPRUPpQZNnakD1cps0zPg805zZ0hfmquQX3415GkqVnA&h=9iTF40-ZglfTakP_EI4u6buVqh5ksgqiD4kepREYk8g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/ee418642-c25a-485f-8f83-0633686f1f51","name":"ee418642-c25a-485f-8f83-0633686f1f51","status":"Succeeded","startTime":"2025-10-09T14:15:11.454903"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"Succeeded","startTime":"2025-11-12T08:55:16.3819691"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '289' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:24 GMT + - Wed, 12 Nov 2025 08:55:27 GMT expires: - '-1' pragma: @@ -1435,11 +1512,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/07c730fb-d693-4c17-886a-e6b0fe6bfc30 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/ba766d8d-8635-488a-96ff-e1a4a89aa454 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 94597277407B413CB618B98C1614F5CF Ref B: MAA201060515027 Ref C: 2025-10-09T14:15:23Z' + - 'Ref A: 509C8699BB464C8A872B196B8C71FCDE Ref B: PNQ231110907054 Ref C: 2025-11-12T08:55:27Z' x-powered-by: - ASP.NET status: @@ -1459,28 +1536,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3310' + - '3699' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:15:25 GMT + - Wed, 12 Nov 2025 08:55:28 GMT expires: - '-1' pragma: @@ -1493,10 +1570,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 57C1FD33376849C199F039F79A42B975 Ref B: MAA201060515029 Ref C: 2025-10-09T14:15:25Z' + - 'Ref A: 1E953B798B9C4AF9A26EDAB153659EFE Ref B: PNQ231110906023 Ref C: 2025-11-12T08:55:27Z' x-powered-by: - ASP.NET status: @@ -1516,304 +1593,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1821,11 +1905,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:07 GMT + - Wed, 12 Nov 2025 08:56:09 GMT expires: - '-1' pragma: @@ -1836,10 +1920,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1C7B177BE5724BAB9EEFEF9B99902226 Ref B: MAA201060513039 Ref C: 2025-10-09T14:16:07Z' + - 'Ref A: FEA8944EF74744148807B6659AB57F7C Ref B: PNQ231110906034 Ref C: 2025-11-12T08:56:09Z' status: code: 200 message: OK @@ -1857,28 +1941,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1892' + - '1795' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:10 GMT + - Wed, 12 Nov 2025 08:56:10 GMT expires: - '-1' pragma: @@ -1891,10 +1975,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B812750070A44C15A0F797CD3923C2C4 Ref B: MAA201060515047 Ref C: 2025-10-09T14:16:09Z' + - 'Ref A: C14884637D3C4FB087F7D095A96D8164 Ref B: PNQ231110907062 Ref C: 2025-11-12T08:56:10Z' x-powered-by: - ASP.NET status: @@ -1914,304 +1998,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -2219,11 +2310,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:11 GMT + - Wed, 12 Nov 2025 08:56:11 GMT expires: - '-1' pragma: @@ -2234,16 +2325,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B1FCDA3832A445118250873E1A64945C Ref B: MAA201060516053 Ref C: 2025-10-09T14:16:11Z' + - 'Ref A: 8C5248B46C09430DAC1EE6FD9B5A9A5F Ref B: PNQ231110906062 Ref C: 2025-11-12T08:56:11Z' status: code: 200 message: OK - request: - body: '{"location": "North Central US (Stage)", "identity": null, "properties": - {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + body: '{"location": "East US 2", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2", "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": @@ -2263,36 +2354,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1017' + - '978' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs cache-control: - no-cache content-length: - - '2625' + - '3044' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:13 GMT + - Wed, 12 Nov 2025 08:56:15 GMT expires: - '-1' pragma: @@ -2306,13 +2397,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/500eb401-5980-4264-b7b9-f6a9b6fb7be5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/03048996-628a-4170-95a6-a2f87aa062c4 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: C1DBAF74FDB14257B6F010B0FAA7B636 Ref B: MAA201060516047 Ref C: 2025-10-09T14:16:13Z' + - 'Ref A: B622B4D669C04AE3868D112295C06BFF Ref B: PNQ231110907025 Ref C: 2025-11-12T08:56:11Z' x-powered-by: - ASP.NET status: @@ -2332,27 +2421,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"InProgress","startTime":"2025-10-09T14:16:14.2138451"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"InProgress","startTime":"2025-11-12T08:56:15.9035945"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:15 GMT + - Wed, 12 Nov 2025 08:56:15 GMT expires: - '-1' pragma: @@ -2366,11 +2455,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/5626fe58-f2fe-4578-8e4d-e2546e127ce0 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d3f0f870-e529-4162-8cbb-c1ef41b987df + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1C479F90788B4C8793859F03590668A9 Ref B: MAA201060514039 Ref C: 2025-10-09T14:16:15Z' + - 'Ref A: 8DF811D83259472089D7650330CB5479 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:56:16Z' x-powered-by: - ASP.NET status: @@ -2390,27 +2479,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"InProgress","startTime":"2025-10-09T14:16:14.2138451"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"InProgress","startTime":"2025-11-12T08:56:15.9035945"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:19 GMT + - Wed, 12 Nov 2025 08:56:19 GMT expires: - '-1' pragma: @@ -2424,11 +2513,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d2ba3d38-5a4a-4fc1-9502-ba0cdc8989f6 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/c0757da4-4089-4730-b6bf-8ad5fda06249 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 18B118D9FD3D496EA1E2F5A4510861B5 Ref B: MAA201060514009 Ref C: 2025-10-09T14:16:18Z' + - 'Ref A: 673E5196257A446487C0C112805DBB8F Ref B: PNQ231110909052 Ref C: 2025-11-12T08:56:19Z' x-powered-by: - ASP.NET status: @@ -2448,27 +2537,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"InProgress","startTime":"2025-10-09T14:16:14.2138451"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"InProgress","startTime":"2025-11-12T08:56:15.9035945"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:22 GMT + - Wed, 12 Nov 2025 08:56:23 GMT expires: - '-1' pragma: @@ -2482,11 +2571,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6fca53cd-c59a-40dd-ab53-7b0d3caf3d55 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/058c067c-c2aa-49a2-ae69-20a71acd9066 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 0951D01FA5B94EE39F3D662DA529ABD9 Ref B: MAA201060516051 Ref C: 2025-10-09T14:16:22Z' + - 'Ref A: 5B22710B58604A959B35246C775CA6D0 Ref B: PNQ231110908062 Ref C: 2025-11-12T08:56:22Z' x-powered-by: - ASP.NET status: @@ -2506,27 +2595,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956161743495853&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=sABFD7zDcChKo8iCOgMdbNkH_2GTUlceV-5KQJtroa70Q4ENAnL7_I7gC1q4K1lB6bmlB0qXof8-7IFk2Cy41t0Rr0PlYaHFHlhvLsM42nh7RV3u15WDl_iVsGMcx-bcF1IlkY4zHA7ZY9UInVtFoUvlnAYY9S5a2580urSD4seP2hOmblPms5LMDKFVUTtEtuHKj0XCBC2n7PeB4DoWcFMzd0zl5_KI5rs7gbAxH55D_uaSAKCNibPJQ7PKSs__BH9TSyeOUy2_vv7Q1wht7few2Vj-o0_7Il9uRuK0FyLIpX9KYeSb0izEFdYFp9eanrhkUrnV1NeZeOO8C2P5zA&h=nKsLwvpqnQavDampbDNMbvfwXNuLV62UXjsz7u5iL7A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/f93a4654-c508-4b66-b15d-9cd3e9769484","name":"f93a4654-c508-4b66-b15d-9cd3e9769484","status":"Succeeded","startTime":"2025-10-09T14:16:14.2138451"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"Succeeded","startTime":"2025-11-12T08:56:15.9035945"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:26 GMT + - Wed, 12 Nov 2025 08:56:27 GMT expires: - '-1' pragma: @@ -2540,11 +2629,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/914ce939-9a6d-45df-8080-018f2f4e668d - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/jioindiawest/f2f5938b-9e72-4145-87b4-a11dbadb9bc2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B8E261D82BE54A72B8EC3E3AC8991075 Ref B: MAA201060513047 Ref C: 2025-10-09T14:16:25Z' + - 'Ref A: CAC30822C8144EDAB60187CD6C9909D8 Ref B: PNQ231110909060 Ref C: 2025-11-12T08:56:26Z' x-powered-by: - ASP.NET status: @@ -2564,28 +2653,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3325' + - '3714' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:16:28 GMT + - Wed, 12 Nov 2025 08:56:28 GMT expires: - '-1' pragma: @@ -2598,10 +2687,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1FCC0513C76A4BE181CF9532ED04F0A1 Ref B: MAA201060516035 Ref C: 2025-10-09T14:16:27Z' + - 'Ref A: 75C2BC888ACA4D59855FD3C8ABD81CEA Ref B: PNQ231110906034 Ref C: 2025-11-12T08:56:28Z' x-powered-by: - ASP.NET status: @@ -2621,27 +2710,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--r0j00cp","name":"containerapp000002--r0j00cp","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T14:15:18+00:00","fqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--d9goxjg","name":"containerapp000002--d9goxjg","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:55:22+00:00","fqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '969' + - '960' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:31 GMT + - Wed, 12 Nov 2025 08:57:30 GMT expires: - '-1' pragma: @@ -2655,11 +2744,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ace6d236-9345-483b-b391-774322ba9051 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/88f96fb5-0423-4da7-99e1-a97a2957d697 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B0E79ED3D81543DFBEE7831EF9E16F09 Ref B: MAA201060513037 Ref C: 2025-10-09T14:17:29Z' + - 'Ref A: A5295ED89930442195F1B9DD46A8A260 Ref B: PNQ231110908042 Ref C: 2025-11-12T08:57:29Z' x-powered-by: - ASP.NET status: @@ -2679,27 +2768,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--01fr01x","name":"functionapp000003--01fr01x","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T14:16:20+00:00","fqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w234j82","name":"functionapp000003--w234j82","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:56:22+00:00","fqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1038' + - '1029' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:33 GMT + - Wed, 12 Nov 2025 08:57:32 GMT expires: - '-1' pragma: @@ -2713,11 +2802,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/060682e3-3767-4a7b-9a8c-e1a090cfd6f5 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ed7562ca-3b24-4fec-99d9-4d65e5d80a02 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: EA3144CAFFA44735A8227FAB68B1750B Ref B: MAA201060513033 Ref C: 2025-10-09T14:17:32Z' + - 'Ref A: 6EAF53293A7241499E1516221EA09AD9 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:57:31Z' x-powered-by: - ASP.NET status: @@ -2737,28 +2826,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3310' + - '3699' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:35 GMT + - Wed, 12 Nov 2025 08:57:32 GMT expires: - '-1' pragma: @@ -2771,10 +2860,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1418DE03D91E4D53AEB69E6F54999019 Ref B: MAA201060516029 Ref C: 2025-10-09T14:17:34Z' + - 'Ref A: 3246EFB9F38D4175BD1D3E2E20003256 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:33Z' x-powered-by: - ASP.NET status: @@ -2794,28 +2883,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3310' + - '3699' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:37 GMT + - Wed, 12 Nov 2025 08:57:32 GMT expires: - '-1' pragma: @@ -2828,10 +2917,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: E04A9A06072142539433FE2D3B63839B Ref B: MAA201060513025 Ref C: 2025-10-09T14:17:36Z' + - 'Ref A: 89B12CF13A99409D9A59E14AB66A3917 Ref B: PNQ231110907034 Ref C: 2025-11-12T08:57:33Z' x-powered-by: - ASP.NET status: @@ -2851,10 +2940,10 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' @@ -2868,7 +2957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:39 GMT + - Wed, 12 Nov 2025 08:57:34 GMT expires: - '-1' pragma: @@ -2882,7 +2971,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 1AA68D1D3032425B8B273FE973AF5C73 Ref B: MAA201060516035 Ref C: 2025-10-09T14:17:38Z' + - 'Ref A: D23ADDA0C1434197B712C95E1AC5D4BF Ref B: PNQ231110906042 Ref C: 2025-11-12T08:57:34Z' status: code: 404 message: Not Found @@ -2900,10 +2989,10 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group @@ -2916,7 +3005,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:40 GMT + - Wed, 12 Nov 2025 08:57:34 GMT expires: - '-1' pragma: @@ -2930,7 +3019,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 692983228E89499FB67F25514B5797DD Ref B: MAA201060515037 Ref C: 2025-10-09T14:17:40Z' + - 'Ref A: 3CA57ECFB53C4F26B9CD3C2C9861C4DA Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:35Z' status: code: 404 message: Not Found @@ -2948,28 +3037,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3325' + - '3714' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:43 GMT + - Wed, 12 Nov 2025 08:57:36 GMT expires: - '-1' pragma: @@ -2982,10 +3071,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D8A4D216C7FA453485176F6401ABDC67 Ref B: MAA201060513029 Ref C: 2025-10-09T14:17:42Z' + - 'Ref A: 8AA06FDDF40E49118926D505408CCEEC Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:36Z' x-powered-by: - ASP.NET status: @@ -3005,28 +3094,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3325' + - '3714' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:45 GMT + - Wed, 12 Nov 2025 08:57:37 GMT expires: - '-1' pragma: @@ -3039,10 +3128,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D634510C850A49CE943C099F7BD25F53 Ref B: MAA201060515025 Ref C: 2025-10-09T14:17:44Z' + - 'Ref A: 080AF4A2D43C41DBB2BC71F020B60212 Ref B: PNQ231110908036 Ref C: 2025-11-12T08:57:37Z' x-powered-by: - ASP.NET status: @@ -3062,10 +3151,10 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/nonexistent-revision/functions?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/nonexistent-revision/functions?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"InternalServerError","message":"Internal server error @@ -3080,7 +3169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:46 GMT + - Wed, 12 Nov 2025 08:57:38 GMT expires: - '-1' pragma: @@ -3094,11 +3183,11 @@ interactions: x-ms-failure-cause: - service x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b0855633-8226-477e-9b00-c2eedff5a8b7 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/31e82d28-d831-46a1-8941-fdb757e6fc3d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9E2E13F90C624044991362FC610AF40C Ref B: MAA201060514051 Ref C: 2025-10-09T14:17:46Z' + - 'Ref A: 78707EF4AE8B454F92EC17AF9626368F Ref B: PNQ231110906031 Ref C: 2025-11-12T08:57:38Z' x-powered-by: - ASP.NET status: @@ -3118,28 +3207,28 @@ interactions: ParameterSetName: - -g -n --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3310' + - '3699' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:48 GMT + - Wed, 12 Nov 2025 08:57:38 GMT expires: - '-1' pragma: @@ -3152,10 +3241,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 8916321D4BF548ADB3AC7297876679C6 Ref B: MAA201060516009 Ref C: 2025-10-09T14:17:48Z' + - 'Ref A: B201382771454E058F3271B9073B479D Ref B: PNQ231110908052 Ref C: 2025-11-12T08:57:39Z' x-powered-by: - ASP.NET status: @@ -3175,28 +3264,28 @@ interactions: ParameterSetName: - -g -n --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:15:11.2934698","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:15:11.2934698"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"containerapp000002--r0j00cp","latestReadyRevisionName":"containerapp000002--r0j00cp","latestRevisionFqdn":"containerapp000002--r0j00cp.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3310' + - '3699' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:49 GMT + - Wed, 12 Nov 2025 08:57:39 GMT expires: - '-1' pragma: @@ -3209,10 +3298,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 7D199D598ED84E8A90A054EF4823A242 Ref B: MAA201060513045 Ref C: 2025-10-09T14:17:49Z' + - 'Ref A: 38F7C23CF0D14E1B8ABB49CF0A6584DE Ref B: PNQ231110909040 Ref C: 2025-11-12T08:57:39Z' x-powered-by: - ASP.NET status: @@ -3232,10 +3321,10 @@ interactions: ParameterSetName: - -g -n --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group @@ -3248,7 +3337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:52 GMT + - Wed, 12 Nov 2025 08:57:40 GMT expires: - '-1' pragma: @@ -3262,7 +3351,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: F6C54C086AA24F398CCBADF48F9CC6B3 Ref B: MAA201060515037 Ref C: 2025-10-09T14:17:51Z' + - 'Ref A: CB20158E8EC6442EB82E4896C821A231 Ref B: PNQ231110907025 Ref C: 2025-11-12T08:57:40Z' status: code: 404 message: Not Found @@ -3280,10 +3369,10 @@ interactions: ParameterSetName: - -g -n --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' @@ -3297,7 +3386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:53 GMT + - Wed, 12 Nov 2025 08:57:42 GMT expires: - '-1' pragma: @@ -3311,7 +3400,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 5023F88EBF134DEFBCC7A3BA835ED768 Ref B: MAA201060515009 Ref C: 2025-10-09T14:17:53Z' + - 'Ref A: C5F71C96F54F4B74A1F29E651AA2740C Ref B: PNQ231110907060 Ref C: 2025-11-12T08:57:42Z' status: code: 404 message: Not Found @@ -3329,28 +3418,28 @@ interactions: ParameterSetName: - -g -n --revision --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3325' + - '3714' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:56 GMT + - Wed, 12 Nov 2025 08:57:42 GMT expires: - '-1' pragma: @@ -3363,10 +3452,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: ACF5A95347B24A8DB36EB1891E8BDCAE Ref B: MAA201060513021 Ref C: 2025-10-09T14:17:55Z' + - 'Ref A: 2FC7A95665E54498876CBF0F83AA6907 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:43Z' x-powered-by: - ASP.NET status: @@ -3386,28 +3475,28 @@ interactions: ParameterSetName: - -g -n --revision --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T14:16:14.1465109","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T14:16:14.1465109"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"functionapp000003--01fr01x","latestReadyRevisionName":"functionapp000003--01fr01x","latestRevisionFqdn":"functionapp000003--01fr01x.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3325' + - '3714' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:57 GMT + - Wed, 12 Nov 2025 08:57:43 GMT expires: - '-1' pragma: @@ -3420,10 +3509,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: C8B323CC46E54457A5A1F1F480D3293A Ref B: MAA201060513025 Ref C: 2025-10-09T14:17:57Z' + - 'Ref A: 380B2218E88348F3AF3AD5EA915E964B Ref B: PNQ231110907023 Ref C: 2025-11-12T08:57:43Z' x-powered-by: - ASP.NET status: @@ -3443,10 +3532,10 @@ interactions: ParameterSetName: - -g -n --revision --function-name User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/nonexistent-revision/functions/HttpExample?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/nonexistent-revision/functions/HttpExample?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"InternalServerError","message":"Internal server error @@ -3461,7 +3550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 14:17:58 GMT + - Wed, 12 Nov 2025 08:57:44 GMT expires: - '-1' pragma: @@ -3475,11 +3564,11 @@ interactions: x-ms-failure-cause: - service x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/9eb7d0cc-cff4-41b1-85be-7577a82a2629 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/978026a9-5089-43c7-901e-b75ae7608060 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: CE4EAE712AC549AB8669FB8766EFCA83 Ref B: MAA201060514049 Ref C: 2025-10-09T14:17:58Z' + - 'Ref A: CF76026220A248108F81333EA2685032 Ref B: PNQ231110907054 Ref C: 2025-11-12T08:57:44Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml index 9600eb46e1a..c6d6dd74e3d 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml @@ -13,304 +13,311 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -318,11 +325,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:41 GMT + - Wed, 12 Nov 2025 08:51:32 GMT expires: - '-1' pragma: @@ -333,10 +340,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 69E3E5C5354147708EB2C4F4326A1A6D Ref B: MAA201060515053 Ref C: 2025-10-09T20:46:39Z' + - 'Ref A: 63A059385F6A4DAFAA7787E7F6666A2A Ref B: PNQ231110908023 Ref C: 2025-11-12T08:51:32Z' status: code: 200 message: OK @@ -354,28 +361,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1892' + - '1795' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:43 GMT + - Wed, 12 Nov 2025 08:51:33 GMT expires: - '-1' pragma: @@ -388,10 +395,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: BD4EC3BE27AC497B86A814041505C23F Ref B: MAA201060514031 Ref C: 2025-10-09T20:46:42Z' + - 'Ref A: 120067BA69134134B33474326E1996AF Ref B: PNQ231110907054 Ref C: 2025-11-12T08:51:33Z' x-powered-by: - ASP.NET status: @@ -411,304 +418,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -716,11 +730,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:45 GMT + - Wed, 12 Nov 2025 08:51:34 GMT expires: - '-1' pragma: @@ -731,10 +745,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: DE77EAFA065C406D838F775983B0EE60 Ref B: MAA201060515023 Ref C: 2025-10-09T20:46:44Z' + - 'Ref A: 068847FFA13D4ACC8BC231C7189E30BB Ref B: PNQ231110907052 Ref C: 2025-11-12T08:51:34Z' status: code: 200 message: OK @@ -752,28 +766,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","name":"env-northcentralusstage","type":"Microsoft.App/managedEnvironments","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-09-19T07:08:47.5724488","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-09-19T07:08:47.5724488"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","staticIp":"172.169.122.206","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/managedEnvironments/env-northcentralusstage/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1892' + - '1795' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:46 GMT + - Wed, 12 Nov 2025 08:51:34 GMT expires: - '-1' pragma: @@ -786,10 +800,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1BF90721143E43FB8D52AE0FB8ED3629 Ref B: MAA201060513009 Ref C: 2025-10-09T20:46:46Z' + - 'Ref A: 9E4BC1E7BA7840BDA4861D4436136F29 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:51:35Z' x-powered-by: - ASP.NET status: @@ -809,304 +823,311 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1114,11 +1135,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:48 GMT + - Wed, 12 Nov 2025 08:51:34 GMT expires: - '-1' pragma: @@ -1129,16 +1150,16 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6D8EE322B4004B6B8F7163BEAAE19F3C Ref B: MAA201060515009 Ref C: 2025-10-09T20:46:48Z' + - 'Ref A: 3EAC1AB0CFF34F04868BAC6792F39AEA Ref B: PNQ231110907042 Ref C: 2025-11-12T08:51:35Z' status: code: 200 message: OK - request: - body: '{"location": "North Central US (Stage)", "identity": null, "properties": - {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage", + body: '{"location": "East US 2", "identity": null, "properties": {"environmentId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2", "configuration": {"secrets": null, "activeRevisionsMode": "multiple", "ingress": {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": null, "allowInsecure": false, "traffic": null, "customDomains": null, "ipSecurityRestrictions": @@ -1158,36 +1179,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1018' + - '979' Content-Type: - application/json ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PUT - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:46:52.5082301Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"CloudBuild","name":"funcapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:51:36.3948688Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"CloudBuild","name":"funcapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ cache-control: - no-cache content-length: - - '2618' + - '3037' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:52 GMT + - Wed, 12 Nov 2025 08:51:36 GMT expires: - '-1' pragma: @@ -1201,13 +1222,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/d1d8980f-964f-4c3d-a85c-6345196b5b38 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7787e380-de06-4624-8393-ef77a93fa8c7 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 4B4D80AC76364B849CF8E570653BDE51 Ref B: MAA201060513019 Ref C: 2025-10-09T20:46:50Z' + - 'Ref A: 769BA329C363401F853A7E75BD8F1ECE Ref B: PNQ231110909040 Ref C: 2025-11-12T08:51:36Z' x-powered-by: - ASP.NET status: @@ -1227,27 +1246,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:53 GMT + - Wed, 12 Nov 2025 08:51:36 GMT expires: - '-1' pragma: @@ -1261,11 +1280,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/ae9756d7-08e5-4181-8360-27e4030f41a9 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ab411084-55d4-4867-bc9a-2cb2802a7229 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 36E76898683446EAB6AD796BDEF24203 Ref B: MAA201060515025 Ref C: 2025-10-09T20:46:53Z' + - 'Ref A: 58A0A59611C24558BE78E80F662E036F Ref B: PNQ231110908036 Ref C: 2025-11-12T08:51:36Z' x-powered-by: - ASP.NET status: @@ -1285,27 +1304,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:46:58 GMT + - Wed, 12 Nov 2025 08:51:39 GMT expires: - '-1' pragma: @@ -1319,11 +1338,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/f9e7f2b6-3208-4d37-8215-e7979c0617c3 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/b8202210-e64b-416c-8961-8daac96ed5bf + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 549548B51F1541ACA5EA3C89AB2756C8 Ref B: MAA201060513045 Ref C: 2025-10-09T20:46:57Z' + - 'Ref A: 7A510B1922EF4329BF6CEC4672A28215 Ref B: PNQ231110909054 Ref C: 2025-11-12T08:51:39Z' x-powered-by: - ASP.NET status: @@ -1343,27 +1362,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:00 GMT + - Wed, 12 Nov 2025 08:51:42 GMT expires: - '-1' pragma: @@ -1377,11 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0877f3ae-64d6-4cfe-a2e2-4268b10bb701 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e6d476a6-378b-40ea-8d61-f83e59025818 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B335A4AE7A9945DDAB8B515126E64648 Ref B: MAA201060514053 Ref C: 2025-10-09T20:47:00Z' + - 'Ref A: 4D25776D91A34609984EEB1D82739BED Ref B: PNQ231110909040 Ref C: 2025-11-12T08:51:42Z' x-powered-by: - ASP.NET status: @@ -1401,27 +1420,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"InProgress","startTime":"2025-10-09T20:46:52.6005952"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:04 GMT + - Wed, 12 Nov 2025 08:51:44 GMT expires: - '-1' pragma: @@ -1435,11 +1454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b82dd5ad-5f64-4728-9fd7-b143d116a6c0 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/74fb11db-8bab-4998-afd8-226591951a35 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 599B28C8DAEC42C981B8CA18B664EFA5 Ref B: MAA201060514035 Ref C: 2025-10-09T20:47:04Z' + - 'Ref A: D2B912785A044383878EC86BDE2B946D Ref B: PNQ231110909025 Ref C: 2025-11-12T08:51:44Z' x-powered-by: - ASP.NET status: @@ -1459,27 +1478,27 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396127268736&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=rosSSq83XDjug9Q6YbtwaBUmCLXblovZnLd2AilicLtetpnIVQRTDw5gaSvMN44ph-ks8YtlfdqmGH7d0X8pck2KFwDXBh36xU5lJkezvdC7ejPbZdzviYOXFpzXdykxptNs1zZ_j4Lw3P9fFy5OebB9rcVrhHUCd2dnvgE4HHXkkJ35aqp_-6IX7Ndqh1vcfAdJJcytZGB-bjBmwra6TtLnBN9r_Z2M3CbJazxoU8QagIeTaCYRxkeqOp5k-KeMpAG17YxyWv64BO0Avnt_Uk08ePiFE7y1klh-mynWAN3hWSaKpmvopjUPS7BgMU7IEUvqZm-fikPJJm5U9eM8-g&h=colSfFLVux8XiTMlPoK02d7aTOOS8yJWX6Jfa8o0-OM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/52f51644-5876-4456-b9e7-ed2641cf9e20","name":"52f51644-5876-4456-b9e7-ed2641cf9e20","status":"Succeeded","startTime":"2025-10-09T20:46:52.6005952"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"Succeeded","startTime":"2025-11-12T08:51:36.4389633"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:09 GMT + - Wed, 12 Nov 2025 08:51:48 GMT expires: - '-1' pragma: @@ -1493,11 +1512,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/a64494f5-7f69-46b2-aa0c-d3b331afd50f - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/589717b3-ee1d-4058-b1f6-ba1dec2db411 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 372206B52541480089DF523E18677DAB Ref B: MAA201060516037 Ref C: 2025-10-09T20:47:08Z' + - 'Ref A: 3D5C25AA4329470087EFA26112DB2647 Ref B: PNQ231110908029 Ref C: 2025-11-12T08:51:47Z' x-powered-by: - ASP.NET status: @@ -1517,28 +1536,28 @@ interactions: ParameterSetName: - -g -n --image --ingress --target-port --environment --kind --revisions-mode User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:46:52.5082301"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--d9w5qxv","latestReadyRevisionName":"funcapp000002--d9w5qxv","latestRevisionFqdn":"funcapp000002--d9w5qxv.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:51:36.3948688"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--dk1ejrs","latestReadyRevisionName":"funcapp000002--dk1ejrs","latestRevisionFqdn":"funcapp000002--dk1ejrs.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3298' + - '3687' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:11 GMT + - Wed, 12 Nov 2025 08:51:48 GMT expires: - '-1' pragma: @@ -1551,10 +1570,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 5FBBE49BF505452685DC9F8B084A0F26 Ref B: MAA201060515039 Ref C: 2025-10-09T20:47:10Z' + - 'Ref A: 41E341FA25814A0EAEF1885BE483292C Ref B: PNQ231110906052 Ref C: 2025-11-12T08:51:48Z' x-powered-by: - ASP.NET status: @@ -1574,304 +1593,311 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","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","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + North","Norway East","Switzerland North","UAE North","Canada East","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden + Central","Canada Central","West Europe","North Europe","East US","East US + 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West + US","Central US","North Central US","South Central US","Korea Central","Brazil + South","West US 3","France Central","South Africa North","Norway East","Switzerland + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -1879,11 +1905,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:43 GMT + - Wed, 12 Nov 2025 08:52:20 GMT expires: - '-1' pragma: @@ -1894,10 +1920,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B83BD7E2D10949DD83E33F1836676CC9 Ref B: MAA201060516045 Ref C: 2025-10-09T20:47:42Z' + - 'Ref A: 82860D2FCB5C4A5BA464C3FD12E86B1C Ref B: PNQ231110907062 Ref C: 2025-11-12T08:52:20Z' status: code: 200 message: OK @@ -1915,304 +1941,311 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -2220,11 +2253,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:44 GMT + - Wed, 12 Nov 2025 08:52:20 GMT expires: - '-1' pragma: @@ -2235,10 +2268,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: F7A3A9EB68B8420ABAAB43ABDA085E55 Ref B: MAA201060516039 Ref C: 2025-10-09T20:47:44Z' + - 'Ref A: 25B1794548724772A423A4ACF60BB738 Ref B: PNQ231110906054 Ref C: 2025-11-12T08:52:20Z' status: code: 200 message: OK @@ -2256,28 +2289,28 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:46:52.5082301"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--d9w5qxv","latestReadyRevisionName":"funcapp000002--d9w5qxv","latestRevisionFqdn":"funcapp000002--d9w5qxv.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:51:36.3948688"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--dk1ejrs","latestReadyRevisionName":"funcapp000002--dk1ejrs","latestRevisionFqdn":"funcapp000002--dk1ejrs.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3298' + - '3687' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:47 GMT + - Wed, 12 Nov 2025 08:52:22 GMT expires: - '-1' pragma: @@ -2290,10 +2323,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: BD173415E533483CB5073521D4978AF6 Ref B: MAA201060515031 Ref C: 2025-10-09T20:47:46Z' + - 'Ref A: C1392ED18A7D4D71BC8D7C84983745CE Ref B: PNQ231110909034 Ref C: 2025-11-12T08:52:21Z' x-powered-by: - ASP.NET status: @@ -2319,10 +2352,10 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PATCH - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: string: '' @@ -2331,19 +2364,19 @@ interactions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Oct 2025 20:47:50 GMT + - Wed, 12 Nov 2025 08:52:23 GMT expires: - '-1' location: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationResults/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&t=638956396709775421&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=F1pkuPDwYivDMKOUg7UQSnm3SEPWnJ_cUgYWdfNUKyiKKmkKi2OtBnT_qSXBJkgkNQ4QY4MEfXZ3uQ6iAa_6Zgm_SeZX4cwgUYxbKxzNmk6nad-wIJ8SaedwpkLb3uqiEiFXEd7nZ9BzOltxivwd8xUIx0BM0Xbpj4p8VMAVG1lReNMQ7anH4wIa-96pM51RgLWrgZEzniaqDOfrXU-SxTNcUr-rv8TykOEXarxYZnZ9oZpM7Sm8I7sDqFTqI9EVcQ35SqQpV0GOE4JUceAxWJdh7XH0p8q5rviPoA20OZgfub-OqDWmSXemO-NnATclXnBCORXFs5XFsKn1uxGShg&h=Blba14mlDxCk-Wq_tZARBSso94RUu1a_rvQUz928cVI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=uvMbF6hX3c3sC27tn2J0-XKvdSH0Ce2dQ5V09FsOQZpKcqJqFnwmYhd6pYFj-gBiH2_VDpsHW29cygtisVylW2SBI9CgaOYV4SDjRCGcKY2Qv_xlSA7ihRnCfG_gGlBdK8m3cEOO-W1AwDF7tbPqudJofd3SOnYSZaphiVj8wD-dhAkaT6DFhdW4okMLLZi4Ks7z7Ex7E5_KH6xpnVFNj4Zy0pF-_HHImMb-jtUoTVLHZDqPuPjPP3GbYbUxtX7yKnPEErT5u11BgD3NLgy3jIGWQjjbleG0twWZef7_y9nMLeKHqDH_pbvwb9Q1lAm3p6GprVmdBwoB-ngADQyIow&h=Zh0PXWqK5AgLTVlIaZQFsQIoi6X62qOqcw8GfXrXPqY pragma: - no-cache strict-transport-security: @@ -2353,13 +2386,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/575b441b-e869-432c-8845-3fd57dfed2f2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/34092aa7-28a6-457b-b1c5-2d76cfde768c x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 254CB1E592AE4ADDBE1DF20C198A3EDC Ref B: MAA201060515029 Ref C: 2025-10-09T20:47:48Z' + - 'Ref A: B02DE91607BA4620B587FBB654AAE39A Ref B: PNQ231110909031 Ref C: 2025-11-12T08:52:22Z' x-powered-by: - ASP.NET status: @@ -2379,27 +2410,85 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:52:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/713215b4-5307-4103-892a-5903bce19666 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 31A04FDF7783418AAC856E1333E76DC1 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:52:24Z' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp update + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"InProgress","startTime":"2025-10-09T20:47:50.899483"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:52 GMT + - Wed, 12 Nov 2025 08:52:27 GMT expires: - '-1' pragma: @@ -2413,11 +2502,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/6963bf74-62a9-4611-8c48-937107bd8862 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/bc70f449-5840-48e1-b334-fc88ad77eea2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 7BA9AE514B574625B229ADDE8B7C29F9 Ref B: MAA201060516051 Ref C: 2025-10-09T20:47:51Z' + - 'Ref A: C23D1D9539A84E23A3FDA0EB00EECDB1 Ref B: PNQ231110909042 Ref C: 2025-11-12T08:52:27Z' x-powered-by: - ASP.NET status: @@ -2437,27 +2526,27 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"InProgress","startTime":"2025-10-09T20:47:50.899483"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:56 GMT + - Wed, 12 Nov 2025 08:52:30 GMT expires: - '-1' pragma: @@ -2471,11 +2560,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/24a331a5-7952-4d57-b272-1c0d7b3c5b2f - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/b2951811-a84d-4e18-9e91-e3825a0da0b9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: CEB7E83B918A4D32B3C541B8258D7634 Ref B: MAA201060513037 Ref C: 2025-10-09T20:47:55Z' + - 'Ref A: D4DE72FCF5AA429FB38CD8AD45A75BC1 Ref B: PNQ231110909042 Ref C: 2025-11-12T08:52:29Z' x-powered-by: - ASP.NET status: @@ -2495,27 +2584,27 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"InProgress","startTime":"2025-10-09T20:47:50.899483"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:47:59 GMT + - Wed, 12 Nov 2025 08:52:33 GMT expires: - '-1' pragma: @@ -2529,11 +2618,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/820c4d60-6df7-4565-9ed7-1637222597a7 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/0a11bd44-7822-4eba-af2d-14639138b031 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 3E4CFBC50D7043358F2182AAE01CC23D Ref B: MAA201060514031 Ref C: 2025-10-09T20:47:59Z' + - 'Ref A: D6B0CC7BBA3B4905A87C2AD0594510E4 Ref B: PNQ231110908025 Ref C: 2025-11-12T08:52:33Z' x-powered-by: - ASP.NET status: @@ -2553,27 +2642,27 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638956396709618987&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=WGXYBFf-AquLANmy-XgLR6KRf9Dg0oABs9-Uj6Y9I96gXcuVTQuqX0b38Z0VpZcG7qYYr9wFvDD3T9fju6fA3TfdMavyReJsMdujST-HwVvuEYg5o_iOXvo_CpEW18CfitFGqb_xNjmXFa0inrHSC52GY1B1qr1Fj2TLCsJtOIeBGGY3E1FD81jG4Z3in8At_N5AU5dZKobZMmKNbjzUoTu3IiyqkY7-LMlOzUu4GCChB3ZkPvb35ptrvi1dwoF8i-SkrocRkVFGZd87Wh_2xxyUVK6rpIMjHBRjFUiO4rLbQtgfpyAb_rqKe6JxU6HStNHwOXQ3ESBrhQ4YXXZxEA&h=tXUkMAbn35zBnxxZvfFimMPB8oOJkZ9FMg0EMBiZ52U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/73d1b720-02a5-4951-9ccf-9a3e919b87b6","name":"73d1b720-02a5-4951-9ccf-9a3e919b87b6","status":"Succeeded","startTime":"2025-10-09T20:47:50.899483"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"Succeeded","startTime":"2025-11-12T08:52:24.2228812"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '289' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:03 GMT + - Wed, 12 Nov 2025 08:52:36 GMT expires: - '-1' pragma: @@ -2587,11 +2676,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/b908cec6-0818-444b-a737-24fff891b4f2 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/7300e61b-8cd6-42a9-8142-f6cc2a190daa + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B40991AC3F1844A6B8B816F3EC1B2EE4 Ref B: MAA201060514021 Ref C: 2025-10-09T20:48:02Z' + - 'Ref A: F85AD0AD0A2343ACB6425BA2B7725875 Ref B: PNQ231110909029 Ref C: 2025-11-12T08:52:36Z' x-powered-by: - ASP.NET status: @@ -2611,28 +2700,28 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:47:49.9462615"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--d9w5qxv","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:52:23.5139087"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--dk1ejrs","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3295' + - '3684' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:05 GMT + - Wed, 12 Nov 2025 08:52:37 GMT expires: - '-1' pragma: @@ -2645,10 +2734,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 4F75DFB0E5F248C0AFE038B35A916C83 Ref B: MAA201060515033 Ref C: 2025-10-09T20:48:03Z' + - 'Ref A: 44363AFC09F142B2AC5D406ECC722302 Ref B: PNQ231110908040 Ref C: 2025-11-12T08:52:37Z' x-powered-by: - ASP.NET status: @@ -2668,27 +2757,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--d9w5qxv","name":"funcapp000002--d9w5qxv","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T20:47:00+00:00","fqdn":"funcapp000002--d9w5qxv.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T20:47:56+00:00","fqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--dk1ejrs","name":"funcapp000002--dk1ejrs","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:51:43+00:00","fqdn":"funcapp000002--dk1ejrs.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:52:29+00:00","fqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '2026' + - '2008' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:37 GMT + - Wed, 12 Nov 2025 08:53:08 GMT expires: - '-1' pragma: @@ -2702,11 +2791,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/954e6851-8c02-4bfa-920b-9b69a48c3edc - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d12e740e-16b3-456b-82f4-47da5bd26f2c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: ECFAAD6F00114513A9FD873DBA81B9F0 Ref B: MAA201060515037 Ref C: 2025-10-09T20:48:36Z' + - 'Ref A: E2971E69059D430C9152587B698AD496 Ref B: PNQ231110908060 Ref C: 2025-11-12T08:53:08Z' x-powered-by: - ASP.NET status: @@ -2726,304 +2815,311 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - AZURECLI/2.77.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) + - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"resourceTypes":[{"resourceType":"spaces","locations":["Central - US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":["East Asia","North - Central US","West Europe"],"apiVersions":["2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"agents","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"59f0a04a-b322-4310-adc9-39ac41e9631e","roleDefinitionId":"be29d5e9-f2ee-4c50-bf95-71cec72c205f"},{"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"},{"applicationId":"1459b1f6-7a5b-4300-93a2-44b4a651759f","roleDefinitionId":"3c5f1b29-9e3d-4a22-b5d6-9ff4e5a37974"},{"applicationId":"2c7dd73f-7a21-485b-b97d-a2508fa152c3","roleDefinitionId":"8a9982ae-66df-4135-b8da-2655633c4a4c"},{"applicationId":"6104ad52-755e-428b-9fb5-5fdf4d2c4d53","roleDefinitionId":"472cfb56-379d-4465-84ff-17404641b16c"},{"applicationId":"409eb69a-5e20-4e1e-a8bf-c23300057950","roleDefinitionId":"e211c432-0a34-4b73-9303-2a489c814a1d"}],"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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East - US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, + 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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden - Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"spaces","locations":["Central + US","East Asia","West Europe","East US 2 EUAP"],"apiVersions":["2023-11-02-preview"],"defaultApiVersion":"2023-11-02-preview","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"sessionPools","locations":["North Central + US (Stage)","West US 2","North Europe","East US","East Asia","North Central + US","Germany West Central","Poland Central","Italy North","Switzerland North","Sweden + Central","Norway East","Japan East","Australia East","West Central US","East + US 2","West US","Brazil South","Canada East","France Central","Korea Central","South + Africa North","South Central US","South India","UAE North","UK South","West + Europe","West US 3","Canada Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central - US EUAP","East US 2 EUAP","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 + 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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"containerApps/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"containerApps/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/privateEndpointConnectionProxies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"sessionPools","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West US 2","North Europe","East - US","East Asia","North Central US","Germany West Central","Poland Central","Italy - North","Switzerland North","Sweden Central","Norway East","Japan East","Australia - East","West Central US","East US 2","West US","Brazil South","Canada East","France - Central","Korea Central","South Africa North","South Central US","South India","UAE - North","UK South","West Europe","West US 3","Canada Central"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/usages","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"operations","locations":["East + Asia","North Central US","West Europe"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","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","Canada + East","West Central US","UK West","Central India","Italy North","Poland Central","South + India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East - US 2 EUAP","North Central US (Stage)","West US 2","Southeast Asia","Sweden + SupportsLocation"},{"resourceType":"builders/builds","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"builders/patches","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","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","Canada + East","West Central US","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["North + Central US (Stage)","West Central US","West US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West US","Central US","North Central US","South Central US","Korea Central","Brazil South","West US 3","France Central","South Africa North","Norway East","Switzerland - North","UAE North","Canada East","West Central US","UK West","Central India","Switzerland - West","Japan West","Australia Southeast","Jio India West","Spain Central","Italy - North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + North","UAE North","Canada East","UK West","Central India","Japan West","Australia + Southeast","France South","Jio India West","Spain Central","Italy North","Poland + Central","South India","Central US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["North + Central US (Stage)","West Europe","East US","East Asia","North Central US","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-10-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Southeast + Asia","Sweden Central","UK South","West US","Australia East","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"agents","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/sourceControlOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/usages","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-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","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/managedCertificateOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"getCustomDomainVerificationId","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Italy North","Poland Central","South India","Switzerland - West"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"builders","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"CrossResourceGroupResourceMove, + SupportsLocation"},{"resourceType":"agentSpaces","locations":["Sweden Central","East + US 2","Australia East","Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"builders/builds","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationResults","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"locations/OperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/dotNetComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/javaComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview","2023-05-02-preview","2023-05-01","2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"managedEnvironments/daprComponents/resiliencyPolicies","locations":["Central - US EUAP","East US 2 EUAP","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","Canada East","West Central - US","UK West","Central India","Switzerland West","Japan West","Australia Southeast","Jio - India West","Spain Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview","2023-11-02-preview","2023-08-01-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"None"},{"resourceType":"functions","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Central US","West - US 2","Southeast Asia","Sweden Central","Canada Central","West Europe","North - Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan - East","UK South","West US","Central US","North Central US","South Central - US","Korea Central","Brazil South","West US 3","France Central","South Africa - North","Norway East","Switzerland North","UAE North","Canada East","UK West","Central - India","Switzerland West","Japan West","Australia Southeast","Jio India West","Spain - Central","Italy North","Poland Central","South India"],"apiVersions":["2025-10-02-preview","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"logicApps","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","West Europe","East US","East - Asia","North Central US","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview","2024-08-02-preview","2024-02-02-preview"],"defaultApiVersion":"2025-02-02-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/connectedOperationResults","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"locations/connectedOperationStatuses","locations":["Central - US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East - US","East Asia","West Europe","Southeast Asia","Sweden Central","UK South","West - US","Australia East"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2024-10-02-preview"],"capabilities":"None"},{"resourceType":"appGroups","locations":["Central + SupportsLocation"},{"resourceType":"locations/sreAgentOperationResults","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"locations/sreAgentOperationStatuses","locations":["Sweden + Central","East US 2"],"apiVersions":["2025-10-02-preview","2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"None"},{"resourceType":"appGroups","locations":["Central US EUAP"],"apiVersions":["2025-05-01-preview"],"defaultApiVersion":"2025-05-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' @@ -3031,11 +3127,11 @@ interactions: cache-control: - no-cache content-length: - - '39322' + - '40152' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:39 GMT + - Wed, 12 Nov 2025 08:53:10 GMT expires: - '-1' pragma: @@ -3046,10 +3142,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 24C05AA21C9A4AE39933986D15B45A1F Ref B: MAA201060515047 Ref C: 2025-10-09T20:48:38Z' + - 'Ref A: 5E31EC29A0AA4DE39AAD28C62FCAEDE3 Ref B: PNQ231110907023 Ref C: 2025-11-12T08:53:10Z' status: code: 200 message: OK @@ -3067,28 +3163,28 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:47:49.9462615"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.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,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:52:23.5139087"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3138' + - '3527' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:40 GMT + - Wed, 12 Nov 2025 08:53:11 GMT expires: - '-1' pragma: @@ -3101,10 +3197,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9FDC83BD84424FCAA65D948A813B76C4 Ref B: MAA201060515029 Ref C: 2025-10-09T20:48:40Z' + - 'Ref A: B44977AE75E9428B95B15A8189E7FB55 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:53:10Z' x-powered-by: - ASP.NET status: @@ -3124,27 +3220,27 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-10-09T20:47:56+00:00","fqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:52:29+00:00","fqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '1006' + - '997' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:41 GMT + - Wed, 12 Nov 2025 08:53:12 GMT expires: - '-1' pragma: @@ -3158,11 +3254,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0a238932-dd5b-4711-bc8c-6c613c7764a1 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/174b930c-c6cc-43dd-98ff-069a53d6c74e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 874C0BCC87834EC29D79D92B6DC46A7F Ref B: MAA201060514045 Ref C: 2025-10-09T20:48:41Z' + - 'Ref A: BDCA3296609C4A139F7958AF7A3EF546 Ref B: PNQ231110909029 Ref C: 2025-11-12T08:53:11Z' x-powered-by: - ASP.NET status: @@ -3188,10 +3284,10 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: PATCH - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-07-01 response: body: string: '' @@ -3200,19 +3296,19 @@ interactions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs cache-control: - no-cache content-length: - '0' date: - - Thu, 09 Oct 2025 20:48:44 GMT + - Wed, 12 Nov 2025 08:53:12 GMT expires: - '-1' location: - - https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationResults/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=D-u12pnQnk_F87NQGug7PDZTdHzk6of5LMgarLhtmN6toHwF9F4oWK0x0pPsV4XxdXyEybtVG-HXPhA_U--L-JbiZGDoZtU9tXLh9Y1auOYjqtp-YpDPun1k5RfimB35SJEZXLpHxyQROB576q-DiU1gI1F5Er2LX2yvojPqIuQlkebrKsMTkCy09Xgj6zjC7-FwQX9ATKxZjShtQuSQrebbfvivqm1iRQYs-3C9rcfV5J1iSsgmCEpQkDs7bRKu73LQZIQBd9ea201jKnYv1_5A_bzLbt0C4j4G5QPC91nspaI3wRyMlPT79UNjpjpNrEDa7--l0sWha054AXL-qg&h=zZCcOyVQ_X6eu2NBB3sSKvhvdF_IgBPJV0hmHmKLRaY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=GA-bBICTfZNhm0LlHWbfOAE_oUrpNsr4wzYXEi-Sg3hp1PNuUJagBwfmM1lLfzReKsgqQU_aeOIkJkMyMfcaXUwY_Mb1k272UhKIQYlaHoNzTGrhE3vJX4spFsRj_SlwTKYhm9erLyWIgJ8dL77YOIBak2cCeOYYeYUblFeQINNprDUq3PzkqJB_61tXW8N7u9sIbp_jLl416T8_CuaOSjaNzzqZ8cYFXrJDluumcIdzmf-PYn5gcARoJcYosLGe_iVuqJrXKKGYXCEtsVng90Hn3vBa_PAvPZ6Q_ML1FYLMCJK_IKPFIQmKibUTnAYuWOjt9CL1QONI0LQrPn8Qew&h=rugn5X-HgCEFOowLOKc6f-NAHeUrJVyB-jY53bThqNc pragma: - no-cache strict-transport-security: @@ -3222,13 +3318,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/31d3f10b-c331-48b8-b420-488150647a98 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b21203c2-c533-4eca-92a3-1b46eb2f19b1 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' - x-ms-throttling-version: - - v1 x-msedge-ref: - - 'Ref A: 7096502F85884A34AD1B257391C69409 Ref B: MAA201060513023 Ref C: 2025-10-09T20:48:42Z' + - 'Ref A: 8614B73AB21B4AB0A7C2C93446BF3AD5 Ref B: PNQ231110907025 Ref C: 2025-11-12T08:53:12Z' x-powered-by: - ASP.NET status: @@ -3248,27 +3342,27 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:46 GMT + - Wed, 12 Nov 2025 08:53:13 GMT expires: - '-1' pragma: @@ -3282,11 +3376,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/e81228b5-f1ac-4a8c-87ff-7ea495517c76 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d2803695-b681-4e28-be00-ecb2a5aa7514 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: AFE748D51E02464FB953F9746D851634 Ref B: MAA201060514051 Ref C: 2025-10-09T20:48:45Z' + - 'Ref A: 35AFAB8EDFA5452A901EF4E9DACA8BEB Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:13Z' x-powered-by: - ASP.NET status: @@ -3306,27 +3400,27 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:48 GMT + - Wed, 12 Nov 2025 08:53:15 GMT expires: - '-1' pragma: @@ -3340,11 +3434,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/8a125c9c-a069-4c49-8973-4962b2b7eee8 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/bf6fda14-2da4-40df-ac29-32ee74f993d6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B54B666567E7461C9340DD0AE87DFD7D Ref B: MAA201060515047 Ref C: 2025-10-09T20:48:48Z' + - 'Ref A: 5C9097A75162407A8D8BF9BF962D89FA Ref B: PNQ231110908060 Ref C: 2025-11-12T08:53:15Z' x-powered-by: - ASP.NET status: @@ -3364,27 +3458,27 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:52 GMT + - Wed, 12 Nov 2025 08:53:18 GMT expires: - '-1' pragma: @@ -3398,11 +3492,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/06a6bc77-6b05-407a-8246-f78d48de617c - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/fab2a273-f4c9-482e-81db-7549996462c2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 1BDACE62EBB64322B111ACBEC1DC00C0 Ref B: MAA201060516025 Ref C: 2025-10-09T20:48:51Z' + - 'Ref A: F1AF8A21B59341C8BB7788EA8B753062 Ref B: PNQ231110906060 Ref C: 2025-11-12T08:53:18Z' x-powered-by: - ASP.NET status: @@ -3422,27 +3516,27 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"InProgress","startTime":"2025-10-09T20:48:44.4778429"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '291' + - '279' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:56 GMT + - Wed, 12 Nov 2025 08:53:21 GMT expires: - '-1' pragma: @@ -3456,11 +3550,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/abb3687f-c6bc-46a7-b389-bf319fa9e869 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/422b2fa8-9b36-4fdb-9a2c-076d33552563 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 62A9B6DAD2B0461CB9D8C8B5F90449C2 Ref B: MAA201060514053 Ref C: 2025-10-09T20:48:55Z' + - 'Ref A: 9502F68E8BD34D358CA55298E2DEAE19 Ref B: PNQ231110906040 Ref C: 2025-11-12T08:53:20Z' x-powered-by: - ASP.NET status: @@ -3480,27 +3574,27 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7?api-version=2025-01-01&azureAsyncOperation=true&t=638956397245252172&c=MIIIpTCCBo2gAwIBAgITFgGu4p87zdtEnAmRzQABAa7inzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzIwMTgxMjU5WhcNMjYwMTE2MTgxMjU5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALipUy-MCRvk21x0zPGPVnw-mYeAVZy3ITscIsIzi4wQqkqQqDh9mQJZL_vfOBBPUBeQFayU0YXpgvlUGCrkBCTaU5Qlw_w3XsGszqMRTAcqKJ1UIrgeb_p6_ZQL5qcXY8Dqs3KV6sbYO22tco5pQ5b9PrA2vMgzA9RaW4HkNYzyHxM1Ep3ZxHoqcMSkdWmz3sdrchqP_KVVLUdbCYxxO_WTYzWB1FXnSIJKKJiaJuYgmC56Xy6aSR24Lg8LLBYIreXRrIhkPMuEWZEFpOJdHgscSXv8RSqJo39at890NqqCatOxlFVew36K4fsaxnh4zSzTT_HOFb00h5R7Qs_K5LECAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQDieB7ud9Yef7tu3hgWczyVks17jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBABbye8_u-EAUvyU-7YOIrRx85PU83sSf4dwNCxZ6viiOmqMW3YBmRdWus4d9Ut7W-xAmhmj1jRT1_TJxho6xzolpgOYpwrwGWHmVDv31qayiz-imnAr2sRjY2-oFCIwA_6iBWQGOs3zWvXURsHZfWHDKbljlc-1h79HmMScP_IY55kHTCF0RMy8VUfOCphEuslyv1g12GRc4TVz69V_UHj3IUNph7Ukn5jcfCQUFOF20DC2I9WHJw0vYuNvBWr26O8v4EFVkQ1erMdxdlWuW98Dx5lxFJ0-R0iCD-dsCKD4ciSzYYSTj4p1L6k5wR8i8uEUwZK34HoXgeZSN8B5GWXCveFc5-uFKM_pVI5spVQIfXVgIuMD-34fVnNsnplKi-MZGDPAakYoerIUnN6PGQOWZETuo8QRIWB11KYjYqACIWtE0gMdacSO5c4jnzzby1XmMELUqBM1qPNxH27duiEWTtlVTMfLcb6rpghXpc-HOk1V8JHPNseHN45df-NnX83WeQpPF_h79gGeXwX6gW66vwd4hSVqnmnvKIp1DsPVnPU8D4UauwzzU34gfb2BKCf_XXG1IZfSNZLUYm2WjbpG3EdX1t7OHZPeDJ3wjUbaHykzwCP5-BbpiB4sb-oqMNI_Ext-cWSNkA4Fbc8C8BuL-sxKF_Mq0CqhtPfOovJns&s=hJPv2mwa8r9QEsngADk9HcXhNwoRSHSTwT4w6Vcb9bXwzfUEjoifeAxnqAznSQ9a4fSgz42hm8Y4aaqtI33CLmldyeq50uv8P-LN0E__yywCaSlN1GQh16q6uv_Wg_qipsSpVlc16fbMZjFBDX8CRLcC8tNDGGdhXzlvxwG3DHZHnEJtFEcwl103_g0SC0tnQfKMxdd2r0ywzcPaeKnfCLSHYelfKpmM6XOT6rP5yzADDBaKaVDif_9FtzXar9PWdk3L3jefTXDXcgC6CJFMaaY5--ecOlL3IzNsQpqvWOqVXK4Agv0GjuevCm2cP0hqTvwM_yqt0jGr6VLMX_Fp9w&h=LGIHQZBdRC6yIFpBx-wBw_CeKNahEhnPZtZBZKNSQao + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northcentralusstage/containerappOperationStatuses/868e4418-6832-4869-b764-acce1a501af7","name":"868e4418-6832-4869-b764-acce1a501af7","status":"Succeeded","startTime":"2025-10-09T20:48:44.4778429"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"Succeeded","startTime":"2025-11-12T08:53:13.1519427"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '290' + - '278' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:48:59 GMT + - Wed, 12 Nov 2025 08:53:24 GMT expires: - '-1' pragma: @@ -3514,11 +3608,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/03a1abcd-8ce0-42e5-80c2-f3b27490448f - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/5c531c19-206d-421d-aee7-4ad8a8d2df44 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: B9605DCA38244B06BD3A9E2A957BAA11 Ref B: MAA201060515021 Ref C: 2025-10-09T20:48:58Z' + - 'Ref A: CEC6BCCC535D457C93AA4A5A8081C6CA Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:24Z' x-powered-by: - ASP.NET status: @@ -3538,28 +3632,28 @@ interactions: ParameterSetName: - -g -n --revision-weight --revision-weight User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3191' + - '3580' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:00 GMT + - Wed, 12 Nov 2025 08:53:25 GMT expires: - '-1' pragma: @@ -3572,10 +3666,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 617B7D4911CF4E72A9C16005106D218D Ref B: MAA201060516051 Ref C: 2025-10-09T20:49:00Z' + - 'Ref A: 10A88C0A75D143DC84BF687C456F489E Ref B: PNQ231110907034 Ref C: 2025-11-12T08:53:24Z' x-powered-by: - ASP.NET status: @@ -3595,28 +3689,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3348' + - '3737' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:03 GMT + - Wed, 12 Nov 2025 08:53:26 GMT expires: - '-1' pragma: @@ -3629,10 +3723,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: E8F81B1DC91B4F62A2960BD243712348 Ref B: MAA201060515011 Ref C: 2025-10-09T20:49:02Z' + - 'Ref A: 4973F4BFA70045B5ACAE7445FE3C36FB Ref B: PNQ231110907023 Ref C: 2025-11-12T08:53:26Z' x-powered-by: - ASP.NET status: @@ -3652,28 +3746,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3348' + - '3737' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:05 GMT + - Wed, 12 Nov 2025 08:53:27 GMT expires: - '-1' pragma: @@ -3686,10 +3780,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 234C5179CBC444DCB0C45F3274A71BC6 Ref B: MAA201060515053 Ref C: 2025-10-09T20:49:04Z' + - 'Ref A: 22BBD06D1200441DA55771F4B3B243A6 Ref B: PNQ231110907040 Ref C: 2025-11-12T08:53:27Z' x-powered-by: - ASP.NET status: @@ -3709,28 +3803,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3348' + - '3737' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:06 GMT + - Wed, 12 Nov 2025 08:53:28 GMT expires: - '-1' pragma: @@ -3743,10 +3837,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: DB234A939DF04EE0B69D43876C40BA6F Ref B: MAA201060516035 Ref C: 2025-10-09T20:49:06Z' + - 'Ref A: 4BF9479004E64DDBAD3FFD50893CC15D Ref B: PNQ231110906029 Ref C: 2025-11-12T08:53:28Z' x-powered-by: - ASP.NET status: @@ -3766,10 +3860,10 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/nonexistent-revision/functions?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/nonexistent-revision/functions?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"InternalServerError","message":"Internal server error @@ -3784,7 +3878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:08 GMT + - Wed, 12 Nov 2025 08:53:28 GMT expires: - '-1' pragma: @@ -3798,11 +3892,11 @@ interactions: x-ms-failure-cause: - service x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/39217b63-7b8f-43fe-89f4-c63a79de51b3 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9b8fce7b-e847-47c7-bfc1-18d71a590351 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 94FBFE8C69F44184883FD8341CBAA8BD Ref B: MAA201060516047 Ref C: 2025-10-09T20:49:08Z' + - 'Ref A: FF1AF4B3CA48492C9093CAB052EF089C Ref B: PNQ231110906036 Ref C: 2025-11-12T08:53:28Z' x-powered-by: - ASP.NET status: @@ -3822,28 +3916,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3348' + - '3737' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:10 GMT + - Wed, 12 Nov 2025 08:53:30 GMT expires: - '-1' pragma: @@ -3856,10 +3950,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 6D9D1C746A6649489273B1961B3387B2 Ref B: MAA201060516037 Ref C: 2025-10-09T20:49:10Z' + - 'Ref A: 301B6782D57747F7BF5C0E983CF632A8 Ref B: PNQ231110907054 Ref C: 2025-11-12T08:53:30Z' x-powered-by: - ASP.NET status: @@ -3879,28 +3973,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3348' + - '3737' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:11 GMT + - Wed, 12 Nov 2025 08:53:31 GMT expires: - '-1' pragma: @@ -3913,10 +4007,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9C0407AFE3534D5C969B77BDFAC83221 Ref B: MAA201060516029 Ref C: 2025-10-09T20:49:11Z' + - 'Ref A: 444748C2A6954B728482462305908E89 Ref B: PNQ231110908042 Ref C: 2025-11-12T08:53:30Z' x-powered-by: - ASP.NET status: @@ -3936,24 +4030,24 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--d9w5qxv/functions?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--dk1ejrs/functions?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--d9w5qxv/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--dk1ejrs/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '524' + - '513' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:13 GMT + - Wed, 12 Nov 2025 08:53:31 GMT expires: - '-1' pragma: @@ -3967,11 +4061,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/40a204d8-d64b-4a6c-8407-c7ebca501339 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0bb1dbcd-ef76-4e39-9f99-4b94ecd49769 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: D868D8B6ABF348D2B9B6174E7FB78DE9 Ref B: MAA201060514051 Ref C: 2025-10-09T20:49:12Z' + - 'Ref A: C6FAF371CE054D43B12E764B3ABD690E Ref B: PNQ231110909025 Ref C: 2025-11-12T08:53:31Z' x-powered-by: - ASP.NET status: @@ -3991,28 +4085,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3348' + - '3737' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:15 GMT + - Wed, 12 Nov 2025 08:53:31 GMT expires: - '-1' pragma: @@ -4025,10 +4119,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 9FBCE945CDD44D0CABDFD613411D09A5 Ref B: MAA201060515053 Ref C: 2025-10-09T20:49:14Z' + - 'Ref A: B1E4904A46234F49A39290E274135042 Ref B: PNQ231110909062 Ref C: 2025-11-12T08:53:32Z' x-powered-by: - ASP.NET status: @@ -4048,28 +4142,28 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"North - Central US (Stage)","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-09T20:46:52.5082301","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-09T20:48:43.9471272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_northcentralusstage/providers/Microsoft.App/managedEnvironments/env-northcentralusstage","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.221.106.163","20.221.107.3","135.233.108.99","72.152.46.28","72.152.45.42","135.233.69.184","64.236.95.15","128.203.174.189","52.228.167.74","20.221.106.208","20.221.106.152","172.169.2.188","172.169.3.64","172.169.2.174","172.169.2.175","172.169.3.65","172.169.2.189","20.9.115.172","20.9.116.165","52.242.209.123","52.242.231.78","20.9.116.161","20.9.116.46","52.230.150.44","52.230.150.168","52.230.151.47","52.230.150.222","52.230.150.71","52.230.151.14","48.214.171.241","48.214.171.110","48.214.171.106","48.214.171.201","48.214.171.132","48.214.171.181","48.214.171.82","48.214.171.186","48.214.171.140","48.214.172.2","52.242.230.210"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://northcentralusstage.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview + 2025-07-01, 2025-10-02-preview, 2026-01-01 cache-control: - no-cache content-length: - - '3348' + - '3737' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:16 GMT + - Wed, 12 Nov 2025 08:53:32 GMT expires: - '-1' pragma: @@ -4082,10 +4176,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-throttling-version: - - v2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 2B51B016C5174292AF7BA387D02C921A Ref B: MAA201060513039 Ref C: 2025-10-09T20:49:15Z' + - 'Ref A: 4F958E6D4C9542B4876D2314C156EA4D Ref B: PNQ231110906036 Ref C: 2025-11-12T08:53:32Z' x-powered-by: - ASP.NET status: @@ -4105,24 +4199,24 @@ interactions: ParameterSetName: - -g -n --revision User-Agent: - - python/3.12.3 (Linux-6.6.87.1-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.77.0 + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 method: GET - uri: https://brazilus.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"centralus","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelysky-3e4cda9e.northcentralusstage.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '524' + - '513' content-type: - application/json; charset=utf-8 date: - - Thu, 09 Oct 2025 20:49:18 GMT + - Wed, 12 Nov 2025 08:53:33 GMT expires: - '-1' pragma: @@ -4136,11 +4230,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/brazilus/0476914d-a91f-439a-9ed8-63f4f69d5de6 - x-ms-throttling-version: - - v2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/466eb050-5a0b-4bf1-b7d4-99bbff0fb5f2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' x-msedge-ref: - - 'Ref A: 417206B50BCD492AB5195AF6094732DB Ref B: MAA201060514029 Ref C: 2025-10-09T20:49:17Z' + - 'Ref A: EF7C447B27544740B67645571B4E18E0 Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:33Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py index bb94a224dfe..50b27a23489 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -31,10 +31,12 @@ def __init__(self, *arg, **kwargs): @AllowLargeResponse(8192) - @ResourceGroupPreparer(location="northcentralus") + @ResourceGroupPreparer(location="eastus2") def test_containerapp_function_list_show_basic(self, resource_group): """Test basic function list functionality with various scenarios""" location = TEST_LOCATION + if format_location(location) == format_location(STAGE_LOCATION): + location = "eastus2" self.cmd('configure --defaults location={}'.format(location)) ca_name = self.create_random_name(prefix='containerapp', length=24) @@ -54,6 +56,10 @@ def test_containerapp_function_list_show_basic(self, resource_group): time.sleep(30) result = self.cmd(f'containerapp function list -g {resource_group} -n {ca_name}').get_output_in_json() + self.assertIsInstance(result['value'], list, "Function list value should be a list") + self.assertGreaterEqual(len(result['value']), 1, "Function list should contain at least one function") + function_names = [func["properties"]["name"] for func in result['value']] + self.assertIn(function_name, function_names, f"Function list should contain the function named {function_name}") # Test successful function show function_details = self.cmd(f'containerapp function show -g {resource_group} -n {ca_name} --function-name {function_name}').get_output_in_json() @@ -65,10 +71,12 @@ def test_containerapp_function_list_show_basic(self, resource_group): @AllowLargeResponse(8192) - @ResourceGroupPreparer(location="northcentralus") + @ResourceGroupPreparer(location="eastus2") def test_containerapp_function_list_show_error_scenarios(self, resource_group): """Test error scenarios for function list command""" location = TEST_LOCATION + if format_location(location) == format_location(STAGE_LOCATION): + location = "eastus2" self.cmd('configure --defaults location={}'.format(location)) ca_name = self.create_random_name(prefix='containerapp', length=24) @@ -130,10 +138,12 @@ def test_containerapp_function_list_show_error_scenarios(self, resource_group): @AllowLargeResponse(8192) - @ResourceGroupPreparer(location="northcentralus") + @ResourceGroupPreparer(location="eastus2") def test_containerapp_function_list_show_multirevision_scenarios(self, resource_group): """Test multiple revisions scenarios for function list command""" location = TEST_LOCATION + if format_location(location) == format_location(STAGE_LOCATION): + location = "eastus2" self.cmd('configure --defaults location={}'.format(location)) env = prepare_containerapp_env_for_app_e2e_tests(self, location=location) @@ -194,11 +204,17 @@ def test_containerapp_function_list_show_multirevision_scenarios(self, resource_ @AllowLargeResponse(8192) - @ResourceGroupPreparer(location="northcentralus") + @ResourceGroupPreparer(location="eastus2") def test_containerapp_function_keys(self, resource_group): """Test function keys show/list/set functionality""" location = TEST_LOCATION + if format_location(location) == format_location(STAGE_LOCATION): + location = "eastus2" + self.cmd('configure --defaults location={}'.format(location)) functionapp_location = TEST_LOCATION + if format_location(functionapp_location) == format_location(STAGE_LOCATION): + functionapp_location = "eastus2" + storage_account_name = self.create_random_name("storageacc", length=24) funcapp_name = self.create_random_name("functionapp", length=24) image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" @@ -362,11 +378,17 @@ def test_containerapp_function_keys(self, resource_group): @AllowLargeResponse(8192) - @ResourceGroupPreparer(location="northcentralus") + @ResourceGroupPreparer(location="eastus2") def test_containerapp_function_invocations_summary_traces(self, resource_group): """Test function keys show/list/set functionality using connection string and App Insights""" location = TEST_LOCATION - functionapp_location = TEST_LOCATION + if format_location(location) == format_location(STAGE_LOCATION): + location = "eastus2" + self.cmd('configure --defaults location={}'.format(location)) + functionapp_location = TEST_LOCATION + if format_location(functionapp_location) == format_location(STAGE_LOCATION): + functionapp_location = "eastus2" + funcapp_name = self.create_random_name("functionapp", length=24) image = "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" app_insights_name = self.create_random_name("appinsights", length=24) @@ -387,7 +409,7 @@ def test_containerapp_function_invocations_summary_traces(self, resource_group): ).output.strip() # Step 2: Prepare Container App environment - env = prepare_containerapp_env_v1_for_app_e2e_tests(self, location=functionapp_location) # this is temporary and will be removed in future + env = prepare_containerapp_env_v1_for_app_e2e_tests(self, location=functionapp_location) # this is temporary and will be removed in future when this can be used with v2 envs time.sleep(100) # Step 3: Create the function app (container app) From 7acaf7c65f5c43d5ec6c3f6389ed0e6b6db2744c Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Wed, 12 Nov 2025 13:13:24 +0000 Subject: [PATCH 09/15] adding app insight extension --- .../tests/latest/test_containerapp_function.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py index 50b27a23489..02ee9f2b95f 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -3,6 +3,8 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +from subprocess import run +from time import sleep import json import os import time @@ -28,6 +30,11 @@ class ContainerappFunctionTests(ScenarioTest): def __init__(self, *arg, **kwargs): super().__init__(*arg, random_config_dir=True, **kwargs) + cmd = ['azdev', 'extension', 'add', 'applicationinsights'] + run(cmd, check=True) + cmd = ['azdev', 'extension', 'add', 'azure-mgmt-applicationinsights'] + run(cmd, check=True) + sleep(120) @AllowLargeResponse(8192) From b4106dbfd1785540d943afbf4076d1841e49c159 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Wed, 12 Nov 2025 13:53:04 +0000 Subject: [PATCH 10/15] test extension add app-insights --- .../tests/latest/test_containerapp_function.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py index 02ee9f2b95f..1fa972be0cc 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -30,10 +30,10 @@ class ContainerappFunctionTests(ScenarioTest): def __init__(self, *arg, **kwargs): super().__init__(*arg, random_config_dir=True, **kwargs) - cmd = ['azdev', 'extension', 'add', 'applicationinsights'] - run(cmd, check=True) - cmd = ['azdev', 'extension', 'add', 'azure-mgmt-applicationinsights'] + cmd = ['azdev', 'extension', 'add', 'application-insights'] run(cmd, check=True) + # cmd = ['azdev', 'extension', 'add', 'azure-mgmt-applicationinsights'] + # run(cmd, check=True) sleep(120) From 7dccb4fb26e98848bc61fa24991082ed74a6add9 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Wed, 12 Nov 2025 15:04:03 +0000 Subject: [PATCH 11/15] adding quotes with *** --- .../test_containerapp_function_keys.yaml | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml index 051108e7f54..bedfeec189c 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml @@ -2373,7 +2373,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:34.5617149Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:34.5617149Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2709,7 +2709,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:41.2144903Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:41.2144903Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3045,7 +3045,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:47.9300762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:47.9300762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3380,7 +3380,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:44:54.2719163Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:54.2719163Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3716,7 +3716,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:01.5908585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:01.5908585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4052,7 +4052,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:07.5303285Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:07.5303285Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4388,7 +4388,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:13.6270338Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:13.6270338Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4724,7 +4724,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:20.3063481Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:20.3063481Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5060,7 +5060,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:26.0768833Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:26.0768833Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5396,7 +5396,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:33.3084076Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:33.3084076Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5732,7 +5732,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:39.6728182Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:39.6728182Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6068,7 +6068,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:45.5556878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:45.5556878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6404,7 +6404,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:52.1483358Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:52.1483358Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6740,7 +6740,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:45:57.9036129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:57.9036129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7076,7 +7076,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":***,"expires":"2025-11-12T08:46:03.6345366Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:46:03.6345366Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, From 008a3580120958aba198c26a840dd0eb85c3d055 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Thu, 13 Nov 2025 05:48:19 +0000 Subject: [PATCH 12/15] version update --- src/containerapp/azext_containerapp/_clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containerapp/azext_containerapp/_clients.py b/src/containerapp/azext_containerapp/_clients.py index 9ff02e1e268..957c8f24aa0 100644 --- a/src/containerapp/azext_containerapp/_clients.py +++ b/src/containerapp/azext_containerapp/_clients.py @@ -304,7 +304,7 @@ def list(cls, cmd, resource_group_name, container_app_name): class ContainerAppFunctionsPreviewClient(): - api_version = "2025-10-02-preview" + api_version = PREVIEW_API_VERSION @classmethod def list_functions_by_revision(cls, cmd, resource_group_name, container_app_name, revision_name): From 406c0dd6498c1b090ce36af70e0e88de88240d58 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Thu, 13 Nov 2025 08:00:22 +0000 Subject: [PATCH 13/15] updates to tests due to version update --- et --hard HEAD@{1} | 459 +++++++ ...p_function_invocations_summary_traces.yaml | 548 ++++---- .../test_containerapp_function_keys.yaml | 1190 ++++++++--------- ...containerapp_function_list_show_basic.yaml | 284 ++-- ...pp_function_list_show_error_scenarios.yaml | 380 +++--- ...ion_list_show_multirevision_scenarios.yaml | 440 +++--- .../latest/test_containerapp_function.py | 2 - 7 files changed, 1792 insertions(+), 1511 deletions(-) create mode 100644 et --hard HEAD@{1} diff --git a/et --hard HEAD@{1} b/et --hard HEAD@{1} new file mode 100644 index 00000000000..b91499ccac5 --- /dev/null +++ b/et --hard HEAD@{1} @@ -0,0 +1,459 @@ +8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{0}: reset: moving to origin/function-changes +de502ca91 HEAD@{1}: commit: updates to tests due to version update +008a35801 (origin/function-cli) HEAD@{2}: commit: version update +7dcfadbbd HEAD@{3}: commit (merge): merging with main +8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{4}: reset: moving to HEAD~1 +63c736b06 HEAD@{5}: reset: moving to HEAD +63c736b06 HEAD@{6}: commit (merge): Merge branch 'main' into function-changes +8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{7}: checkout: moving from main to function-changes +59814d07f (upstream/main, upstream/HEAD, origin/main, origin/HEAD, main) HEAD@{8}: pull upstream main: Fast-forward +aad8ba520 HEAD@{9}: checkout: moving from function-changes to main +8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{10}: pull origin function-changes: Fast-forward +379dedb3a HEAD@{11}: reset: moving to HEAD +379dedb3a HEAD@{12}: reset: moving to origin/function-changes +7dccb4fb2 (origin/function-tests) HEAD@{13}: commit: adding quotes with *** +b4106dbfd HEAD@{14}: commit: test extension add app-insights +7acaf7c65 HEAD@{15}: commit: adding app insight extension +025c3be89 HEAD@{16}: commit: tests +379dedb3a HEAD@{17}: reset: moving to origin/function-changes +a5dda6485 HEAD@{18}: commit: removing secrets from test recordings +379d6601e HEAD@{19}: commit: removing secrets from test recordings +2758b90db HEAD@{20}: reset: moving to HEAD~1 +d0becc4e3 HEAD@{21}: commit: removing secrets from test recordings +2758b90db HEAD@{22}: reset: moving to HEAD~1 +a5093b4ce HEAD@{23}: commit: removing secrets from test recordings +2758b90db HEAD@{24}: reset: moving to HEAD~1 +6fca276a3 HEAD@{25}: commit: removing secrets from test recordings +2758b90db HEAD@{26}: commit: running tests with requests to management.azure.com endpoint +7a8d14376 HEAD@{27}: commit: modifications to test +253c5256c (origin/function-comments) HEAD@{28}: commit (merge): merging main +47ef9ad27 HEAD@{29}: reset: moving to HEAD +47ef9ad27 HEAD@{30}: checkout: moving from function-changes to function-changes +47ef9ad27 HEAD@{31}: checkout: moving from function-changes to function-changes +47ef9ad27 HEAD@{32}: reset: moving to HEAD +47ef9ad27 HEAD@{33}: commit: fixing style error +9b20d748e HEAD@{34}: commit: resolving comments +fdc29375e HEAD@{35}: checkout: moving from function-temp to function-changes +c01dbdfdc (function-temp) HEAD@{36}: checkout: moving from function-changes to function-temp +fdc29375e HEAD@{37}: checkout: moving from function-temp to function-changes +c01dbdfdc (function-temp) HEAD@{38}: checkout: moving from function-changes to function-temp +fdc29375e HEAD@{39}: checkout: moving from function-temp to function-changes +c01dbdfdc (function-temp) HEAD@{40}: checkout: moving from main to function-temp +aad8ba520 HEAD@{41}: checkout: moving from function-changes to main +fdc29375e HEAD@{42}: checkout: moving from main to function-changes +aad8ba520 HEAD@{43}: reset: moving to HEAD~2 +34fcc6e6c HEAD@{44}: checkout: moving from function-changes to main +fdc29375e HEAD@{45}: commit: resolving comments +aac3e984c HEAD@{46}: commit: resolving some of the comments +c01dbdfdc (function-temp) HEAD@{47}: checkout: moving from main to function-changes +34fcc6e6c HEAD@{48}: checkout: moving from function-changes to main +c01dbdfdc (function-temp) HEAD@{49}: reset: moving to HEAD +c01dbdfdc (function-temp) HEAD@{50}: checkout: moving from main to function-changes +34fcc6e6c HEAD@{51}: checkout: moving from function-changes to main +c01dbdfdc (function-temp) HEAD@{52}: checkout: moving from main to function-changes +34fcc6e6c HEAD@{53}: pull upstream main: Fast-forward +ca876f4ff (tag: containerapp-1.2.0b4) HEAD@{54}: checkout: moving from function-changes to main +c01dbdfdc (function-temp) HEAD@{55}: commit: fixing style errors +fb17f16ea HEAD@{56}: commit: adding all the missing files +ab2615717 HEAD@{57}: commit: Az function cli changes +024f87149 HEAD@{58}: reset: moving to upstream/main +c97f4cfc6 HEAD@{59}: commit: Az function cli changes +024f87149 HEAD@{60}: reset: moving to upstream/main +68b0044fd HEAD@{61}: pull upstream main: Merge made by the 'ort' strategy. +ae8070845 HEAD@{62}: commit: masking secrets +156e82cde HEAD@{63}: commit: masking secrets +ccb2ca8ea HEAD@{64}: commit: fixing formatting issues +6e9feda1a HEAD@{65}: commit (merge): resolving merge conflicts +0400f4e70 HEAD@{66}: checkout: moving from main to function-changes +ca876f4ff (tag: containerapp-1.2.0b4) HEAD@{67}: checkout: moving from function-changes-latest to main +c45ffc273 HEAD@{68}: pull: Merge made by the 'ort' strategy. +31c261f09 HEAD@{69}: commit (merge): resolving merge conflicts +c4e7c3711 HEAD@{70}: checkout: moving from main to function-changes-latest +ca876f4ff (tag: containerapp-1.2.0b4) HEAD@{71}: pull upstream main: Fast-forward +ac57da87f HEAD@{72}: checkout: moving from function-changes to main +dafd802a8 HEAD@{73}: commit: adding tests for keys and invocations related commands +6fe8ff260 HEAD@{74}: pull origin main: Merge made by the 'ort' strategy. +fe5669c9f HEAD@{75}: pull: Merge made by the 'ort' strategy. +3f9c35756 HEAD@{76}: checkout: moving from function-tests to function-changes +4862321e8 (origin/newbranch) HEAD@{77}: checkout: moving from main to function-tests +ac57da87f HEAD@{78}: pull upstream main: Fast-forward +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{79}: checkout: moving from function-changes to main +3f9c35756 HEAD@{80}: commit: adding function keys test +21fd57781 (origin/format-fix) HEAD@{81}: commit: fixing formatting +8d57aa6e9 HEAD@{82}: commit: adding tests +931a8546b HEAD@{83}: merge main: Merge made by the 'ort' strategy. +4862321e8 (origin/newbranch) HEAD@{84}: checkout: moving from main to function-changes +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{85}: checkout: moving from function-changes to main +4862321e8 (origin/newbranch) HEAD@{86}: rebase (abort): returning to refs/heads/function-changes +a89a76b17 HEAD@{87}: commit: resolving merge conflicts +73210ad32 HEAD@{88}: commit: resolving merge conflicts +6fc92d31a HEAD@{89}: commit: resolving merge conflicts +8457fd20a HEAD@{90}: commit: resolving merge conflicts +106720bfe HEAD@{91}: rebase (pick): updating function keys decorator +cb03bf72f HEAD@{92}: commit: resolving merge conflicts +fd53e5b3d HEAD@{93}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +703c6bbee HEAD@{94}: rebase (pick): modifying help description +29fea2a3f HEAD@{95}: rebase (pick): addressing comments +2d8fec89e HEAD@{96}: rebase (pick): correcting params.py file +804ad5f46 HEAD@{97}: rebase (pick): modification to help descriptions +d6a675184 HEAD@{98}: rebase (pick): adding az containerapp functions commands +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{99}: rebase (start): checkout main +4862321e8 (origin/newbranch) HEAD@{100}: checkout: moving from main to function-changes +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{101}: checkout: moving from function-changes to main +4862321e8 (origin/newbranch) HEAD@{102}: rebase (abort): returning to refs/heads/function-changes +4862321e8 (origin/newbranch) HEAD@{103}: rebase (abort): returning to refs/heads/function-changes +4862321e8 (origin/newbranch) HEAD@{104}: checkout: moving from main to function-changes +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{105}: checkout: moving from 5030f3d0cba69c2abcc96349602c798a867bfd04 to main +5030f3d0c HEAD@{106}: commit: resolving merge conflicts +e5da8d994 HEAD@{107}: commit: resolving merge conflicts +0d3c0093b HEAD@{108}: commit: resolving merge conflicts +bc9e30b3b HEAD@{109}: rebase (pick): updating function keys decorator +84426bbfb HEAD@{110}: commit: resolving merge conflicts +b7bb47540 HEAD@{111}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +cf0903667 HEAD@{112}: rebase (pick): modifying help description +572b65925 HEAD@{113}: rebase (pick): addressing comments +0c1d742c6 HEAD@{114}: rebase (pick): correcting params.py file +a19bd95de HEAD@{115}: rebase (pick): modification to help descriptions +03a248162 HEAD@{116}: rebase (pick): adding az containerapp functions commands +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{117}: rebase (start): checkout main +4862321e8 (origin/newbranch) HEAD@{118}: checkout: moving from main to function-changes +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{119}: checkout: moving from function-changes to main +4862321e8 (origin/newbranch) HEAD@{120}: rebase (abort): returning to refs/heads/function-changes +bed7bc0a2 HEAD@{121}: commit: resolving merge conflicts +3f40981bd HEAD@{122}: commit: resolving merge conflicts +290b609f3 HEAD@{123}: rebase (continue): Add functionapp invocations summary and traces commands +621c78427 HEAD@{124}: rebase (pick): updating function keys decorator +71e64689b HEAD@{125}: rebase (continue): adding az containerapp function keys commands +dd033e14a HEAD@{126}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +3e206902a HEAD@{127}: rebase (pick): modifying help description +d3835b787 HEAD@{128}: rebase (pick): addressing comments +c3b0d9d33 HEAD@{129}: rebase (pick): correcting params.py file +1d5f20d45 HEAD@{130}: rebase (pick): modification to help descriptions +642bef297 HEAD@{131}: rebase (pick): adding az containerapp functions commands +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{132}: rebase (start): checkout main +4862321e8 (origin/newbranch) HEAD@{133}: checkout: moving from function-tests to function-changes +4862321e8 (origin/newbranch) HEAD@{134}: rebase (abort): returning to refs/heads/function-tests +b7d5978be HEAD@{135}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +e71e1cbbc HEAD@{136}: rebase (pick): modifying help description +b425cc847 HEAD@{137}: rebase (pick): addressing comments +97387e027 HEAD@{138}: rebase (pick): correcting params.py file +acba21c21 HEAD@{139}: rebase (pick): modification to help descriptions +207a1932e HEAD@{140}: rebase (pick): adding az containerapp functions commands +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{141}: rebase (start): checkout main +4862321e8 (origin/newbranch) HEAD@{142}: checkout: moving from main to function-tests +f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{143}: pull upstream main: Fast-forward +128dd907b (tag: confcom-1.2.8) HEAD@{144}: checkout: moving from function-tests to main +4862321e8 (origin/newbranch) HEAD@{145}: checkout: moving from function-changes to function-tests +4862321e8 (origin/newbranch) HEAD@{146}: reset: moving to HEAD~2 +4f2484e75 HEAD@{147}: checkout: moving from main to function-changes +128dd907b (tag: confcom-1.2.8) HEAD@{148}: checkout: moving from newbranch to main +4862321e8 (origin/newbranch) HEAD@{149}: reset: moving to HEAD~2 +4f2484e75 HEAD@{150}: checkout: moving from function-changes to newbranch +ab86b12a4 HEAD@{151}: checkout: moving from main to function-changes +128dd907b (tag: confcom-1.2.8) HEAD@{152}: checkout: moving from newbranch to main +dd8064040 HEAD@{153}: reset: moving to HEAD +dd8064040 HEAD@{154}: revert: Reapply "fixing issue with an integration test" +7da63c4bb HEAD@{155}: reset: moving to HEAD +7da63c4bb HEAD@{156}: revert: Revert "fixing issue with an integration test" +2b2c22347 (origin/shahkhushi/format-fix) HEAD@{157}: commit: fixing issue with an integration test +4cde88da1 HEAD@{158}: commit: fixing linter error +1016c1743 HEAD@{159}: commit: fixing formatting issues +b14dc66bc HEAD@{160}: commit: deleting mistakenly added files +2453b2ce2 HEAD@{161}: commit (cherry-pick): fixing linter and style errors +30093f637 HEAD@{162}: reset: moving to 30093f6375499e3676e37a02ce96161d57594435 +30093f637 HEAD@{163}: checkout: moving from newbranch to newbranch +30093f637 HEAD@{164}: reset: moving to 30093f6375499e3676e37a02ce96161d57594435 +30093f637 HEAD@{165}: checkout: moving from main to newbranch +128dd907b (tag: confcom-1.2.8) HEAD@{166}: checkout: moving from function-changes to main +ab86b12a4 HEAD@{167}: checkout: moving from main to function-changes +128dd907b (tag: confcom-1.2.8) HEAD@{168}: checkout: moving from function-changes to main +ab86b12a4 HEAD@{169}: commit: fixing linter and style errors +5ddb8de36 (origin/shahkhushi/functionaca-cli) HEAD@{170}: commit: addressing comments +36b39c388 HEAD@{171}: rebase (abort): returning to refs/heads/function-changes +ecd7d3d8d HEAD@{172}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +fa5537d7b HEAD@{173}: rebase (pick): modifying help description +acee28646 HEAD@{174}: rebase (pick): addressing comments +418a70aca HEAD@{175}: rebase (pick): correcting params.py file +434beffc1 HEAD@{176}: rebase (pick): modification to help descriptions +968f62c3d HEAD@{177}: rebase (pick): adding az containerapp functions commands +128dd907b (tag: confcom-1.2.8) HEAD@{178}: rebase (start): checkout main +36b39c388 HEAD@{179}: rebase (abort): returning to refs/heads/function-changes +4db6907b2 HEAD@{180}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +8d169b9f7 HEAD@{181}: rebase (pick): modifying help description +d34fbe9d6 HEAD@{182}: rebase (pick): addressing comments +7403f4fad HEAD@{183}: rebase (pick): correcting params.py file +2e02ab3b3 HEAD@{184}: rebase (pick): modification to help descriptions +d72d4b671 HEAD@{185}: rebase (pick): adding az containerapp functions commands +128dd907b (tag: confcom-1.2.8) HEAD@{186}: rebase (start): checkout main +36b39c388 HEAD@{187}: pull origin function-changes: Fast-forward +d3d2a403b (origin/functionaca-cli) HEAD@{188}: rebase (abort): returning to refs/heads/function-changes +e5823004a HEAD@{189}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +054d2934d HEAD@{190}: rebase (pick): modifying help description +b0f65d5ee HEAD@{191}: rebase (pick): addressing comments +e7d7e2458 HEAD@{192}: rebase (pick): correcting params.py file +d247ef2fc HEAD@{193}: rebase (pick): modification to help descriptions +90fe4e638 HEAD@{194}: rebase (pick): adding az containerapp functions commands +128dd907b (tag: confcom-1.2.8) HEAD@{195}: rebase (start): checkout main +d3d2a403b (origin/functionaca-cli) HEAD@{196}: rebase (abort): returning to refs/heads/function-changes +2d6cb55d3 HEAD@{197}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +aef83e27b HEAD@{198}: rebase (pick): modifying help description +a33acbb53 HEAD@{199}: rebase (pick): addressing comments +b4794440c HEAD@{200}: rebase (pick): correcting params.py file +d994dd0cc HEAD@{201}: rebase (pick): modification to help descriptions +84be6b966 HEAD@{202}: rebase (pick): adding az containerapp functions commands +128dd907b (tag: confcom-1.2.8) HEAD@{203}: rebase (start): checkout main +d3d2a403b (origin/functionaca-cli) HEAD@{204}: checkout: moving from main to function-changes +128dd907b (tag: confcom-1.2.8) HEAD@{205}: reset: moving to upstream/main +128dd907b (tag: confcom-1.2.8) HEAD@{206}: checkout: moving from function-changes to main +d3d2a403b (origin/functionaca-cli) HEAD@{207}: rebase (abort): returning to refs/heads/function-changes +556d74801 HEAD@{208}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +565013c56 HEAD@{209}: rebase (pick): modifying help description +411ade849 HEAD@{210}: rebase (pick): addressing comments +8e27cee03 HEAD@{211}: rebase (pick): correcting params.py file +840eb29a9 HEAD@{212}: rebase (pick): modification to help descriptions +fab0f5f0e HEAD@{213}: rebase (pick): adding az containerapp functions commands +128dd907b (tag: confcom-1.2.8) HEAD@{214}: rebase (start): checkout main +d3d2a403b (origin/functionaca-cli) HEAD@{215}: checkout: moving from main to function-changes +128dd907b (tag: confcom-1.2.8) HEAD@{216}: pull upstream main: Fast-forward +cd5decbfa HEAD@{217}: checkout: moving from function-changes to main +d3d2a403b (origin/functionaca-cli) HEAD@{218}: commit: several minor code improvements without functionality changes +e23a6e0a7 HEAD@{219}: commit: adding transformers for ouput formatting and adding check for kind +41bc7efd9 HEAD@{220}: reset: moving to HEAD~1 +0bc26da5d HEAD@{221}: reset: moving to HEAD~1 +2e2bdb350 HEAD@{222}: reset: moving to HEAD~1 +55b7e4456 HEAD@{223}: commit: adding check for function on aca +2e2bdb350 HEAD@{224}: commit: adding check for kind being function app and some transformers for keys output +0bc26da5d HEAD@{225}: commit: adding table transformers for keys related commands +41bc7efd9 HEAD@{226}: pull: Fast-forward +bb913c095 HEAD@{227}: pull origin function-changes: Fast-forward +1168a8e2a HEAD@{228}: commit: adding support for output formats and adding limit parameter to invocations traces +a720b4159 HEAD@{229}: commit: adding support for output formatting +35bf04acc HEAD@{230}: commit: fixes for invocations +457afd36d HEAD@{231}: commit: nit changes to help.py +30e4b09be HEAD@{232}: commit: modifications to help.py +6f92a800e HEAD@{233}: commit: a minor fix +c417b1eae HEAD@{234}: pull origin function-changes: Fast-forward +faebfed47 HEAD@{235}: reset: moving to HEAD~1 +aacf9e897 HEAD@{236}: commit: minor fix +faebfed47 HEAD@{237}: commit: some minor fixes +35a180526 HEAD@{238}: pull origin function-changes: Fast-forward +8b0630607 HEAD@{239}: checkout: moving from functionaca-keys to function-changes +8b7e92f82 HEAD@{240}: checkout: moving from functionaca-getlist to functionaca-keys +42b0cd4c7 HEAD@{241}: checkout: moving from functionaca-keys to functionaca-getlist +8b7e92f82 HEAD@{242}: checkout: moving from functionaca-getlist to functionaca-keys +42b0cd4c7 HEAD@{243}: checkout: moving from functionaca-keys to functionaca-getlist +8b7e92f82 HEAD@{244}: checkout: moving from function-copy-test to functionaca-keys +4451ac31c HEAD@{245}: commit: - +8b0630607 HEAD@{246}: checkout: moving from function-changes to function-copy-test +8b0630607 HEAD@{247}: pull origin function-changes: Fast-forward +79d7cc1b1 HEAD@{248}: checkout: moving from functionaca-keys to function-changes +8b7e92f82 HEAD@{249}: commit: reverting api version modifications +18b3af76e HEAD@{250}: checkout: moving from functionaca-getlist to functionaca-keys +42b0cd4c7 HEAD@{251}: checkout: moving from functionaca-keys to functionaca-getlist +18b3af76e HEAD@{252}: commit: chagnes related to imports and api version +5542ef5e8 (origin/functionaca-keys) HEAD@{253}: checkout: moving from main to functionaca-keys +cd5decbfa HEAD@{254}: pull upstream main: Fast-forward +e0c635720 (tag: connectedk8s-1.10.9) HEAD@{255}: checkout: moving from functionaca-keys to main +5542ef5e8 (origin/functionaca-keys) HEAD@{256}: commit: adding validations for parameters +f4ba4ec11 HEAD@{257}: commit: adding checks for revision name and retrival of replicas +bb2c76324 HEAD@{258}: commit: modifications to function keys decorator +3aa229329 HEAD@{259}: commit: modificatins related to function keys cli commands +a3d5643dd HEAD@{260}: pull origin function-changes: Fast-forward +79d7cc1b1 HEAD@{261}: checkout: moving from function-changes to functionaca-keys +79d7cc1b1 HEAD@{262}: commit (merge): resolving merge conflicts +a34da44c2 HEAD@{263}: checkout: moving from main to function-changes +e0c635720 (tag: connectedk8s-1.10.9) HEAD@{264}: checkout: moving from functionaca-getlist to main +42b0cd4c7 HEAD@{265}: commit: modifications to help descriptions +852994d0a HEAD@{266}: commit: adding tests +0107fda93 HEAD@{267}: rebase (finish): returning to refs/heads/functionaca-getlist +0107fda93 HEAD@{268}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions +c1e4db710 HEAD@{269}: rebase (pick): modifying help description +5e514c81a HEAD@{270}: rebase (pick): addressing comments +a6f740cfb HEAD@{271}: rebase (pick): correcting params.py file +103347cd1 HEAD@{272}: rebase (pick): modification to help descriptions +dd1103250 HEAD@{273}: rebase (pick): adding az containerapp functions commands +e0c635720 (tag: connectedk8s-1.10.9) HEAD@{274}: rebase (start): checkout main +0986024dd HEAD@{275}: checkout: moving from main to functionaca-getlist +e0c635720 (tag: connectedk8s-1.10.9) HEAD@{276}: pull upstream main: Fast-forward +cd79464cd (tag: spring-1.28.4) HEAD@{277}: checkout: moving from functionaca-keys to main +b9c8a4b10 HEAD@{278}: commit: updating function keys decorator +88ab1f6e2 HEAD@{279}: checkout: moving from functionaca-getlist to functionaca-keys +0986024dd HEAD@{280}: commit: modifying the command to be az containerapp function instead of az containerapp functions +e42a0f6cf HEAD@{281}: checkout: moving from functionaca-keys to functionaca-getlist +88ab1f6e2 HEAD@{282}: commit: adding az containerapp function keys commands +cd79464cd (tag: spring-1.28.4) HEAD@{283}: checkout: moving from functionaca-getlist to functionaca-keys +e42a0f6cf HEAD@{284}: commit: modifying help description +95e3345ee HEAD@{285}: checkout: moving from functionaca-keys to functionaca-getlist +cd79464cd (tag: spring-1.28.4) HEAD@{286}: checkout: moving from main to functionaca-keys +cd79464cd (tag: spring-1.28.4) HEAD@{287}: checkout: moving from functionaca-getlist to main +95e3345ee HEAD@{288}: commit: addressing comments +94cf376ac HEAD@{289}: commit: correcting params.py file +a9393d88b HEAD@{290}: checkout: moving from main to functionaca-getlist +cd79464cd (tag: spring-1.28.4) HEAD@{291}: checkout: moving from functionaca-getlist to main +a9393d88b HEAD@{292}: commit: modification to help descriptions +4dc363f59 HEAD@{293}: rebase (finish): returning to refs/heads/functionaca-getlist +4dc363f59 HEAD@{294}: rebase (pick): adding az containerapp functions commands +cd79464cd (tag: spring-1.28.4) HEAD@{295}: rebase (start): checkout main +1b76f6aa8 HEAD@{296}: checkout: moving from main to functionaca-getlist +cd79464cd (tag: spring-1.28.4) HEAD@{297}: pull upstream main: Fast-forward +80dc0e2cc (tag: amg-2.8.1) HEAD@{298}: checkout: moving from functionaca-getlist to main +1b76f6aa8 HEAD@{299}: commit: adding az containerapp functions commands +80dc0e2cc (tag: amg-2.8.1) HEAD@{300}: checkout: moving from main to functionaca-getlist +80dc0e2cc (tag: amg-2.8.1) HEAD@{301}: pull upstream main: Fast-forward +977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{302}: checkout: moving from functionaca-up to main +d42a7aeb1 (origin/functionaca-up) HEAD@{303}: rebase (finish): returning to refs/heads/functionaca-up +d42a7aeb1 (origin/functionaca-up) HEAD@{304}: rebase (pick): making kind argument as enum instead of string +75bce5cb6 HEAD@{305}: rebase (pick): fixing linter error +433528507 HEAD@{306}: rebase (pick): updating argument context of kind argument +ba0f9c3e0 HEAD@{307}: rebase (pick): modifying tests to run in playback mode +cc72f7348 HEAD@{308}: rebase (pick): updating help description of container app for kind argument +898098353 HEAD@{309}: rebase (pick): updating help description +683bb39b2 HEAD@{310}: rebase (pick): modifications with the tests +6dd5b0d7b HEAD@{311}: rebase (pick): adding tests +400db39f2 HEAD@{312}: rebase (pick): fixing a mistake with help description +6e45529eb HEAD@{313}: rebase (pick): adding tests +4965acc46 HEAD@{314}: rebase (pick): rebase commit +977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{315}: rebase (start): checkout main +3738ae691 HEAD@{316}: checkout: moving from main to functionaca-up +977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{317}: rebase: checkout main +3738ae691 HEAD@{318}: checkout: moving from main to functionaca-up +977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{319}: rebase: checkout main +3738ae691 HEAD@{320}: checkout: moving from main to functionaca-up +977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{321}: pull upstream main: Fast-forward +21199ad6b (tag: neon-1.0.0b6) HEAD@{322}: checkout: moving from functionaca-up to main +3738ae691 HEAD@{323}: commit: making kind argument as enum instead of string +c82737b96 HEAD@{324}: commit: fixing linter error +648398cd2 HEAD@{325}: rebase (finish): returning to refs/heads/functionaca-up +648398cd2 HEAD@{326}: rebase (pick): updating argument context of kind argument +6e97797f2 HEAD@{327}: rebase (pick): modifying tests to run in playback mode +5a0199db1 HEAD@{328}: rebase (pick): updating help description of container app for kind argument +0605665fc HEAD@{329}: rebase (pick): updating help description +fe233bf1f HEAD@{330}: rebase (pick): modifications with the tests +80a241541 HEAD@{331}: rebase (pick): adding tests +a6327e1aa HEAD@{332}: rebase (pick): fixing a mistake with help description +6b781b420 HEAD@{333}: rebase (pick): adding tests +2f0823630 HEAD@{334}: rebase (pick): rebase commit +21199ad6b (tag: neon-1.0.0b6) HEAD@{335}: rebase (start): checkout main +525d8f5f9 HEAD@{336}: checkout: moving from main to functionaca-up +21199ad6b (tag: neon-1.0.0b6) HEAD@{337}: pull upstream main: Fast-forward +5d9994515 HEAD@{338}: checkout: moving from functionaca-up to main +525d8f5f9 HEAD@{339}: commit: updating argument context of kind argument +b082e363b HEAD@{340}: rebase (finish): returning to refs/heads/functionaca-up +b082e363b HEAD@{341}: rebase (pick): modifying tests to run in playback mode +78c5f0699 HEAD@{342}: rebase (pick): updating help description of container app for kind argument +b035e36ef HEAD@{343}: rebase (pick): updating help description +d9b6dc106 HEAD@{344}: rebase (pick): modifications with the tests +a1df6da6d HEAD@{345}: rebase (pick): adding tests +d1434cf0f HEAD@{346}: rebase (pick): fixing a mistake with help description +1ed4797f8 HEAD@{347}: rebase (pick): adding tests +594f797c7 HEAD@{348}: rebase (pick): rebase commit +5d9994515 HEAD@{349}: rebase (start): checkout main +b78322969 HEAD@{350}: checkout: moving from main to functionaca-up +5d9994515 HEAD@{351}: pull upstream main: Fast-forward +e74bd067d (tag: aks-agent-1.0.0b1) HEAD@{352}: checkout: moving from functionaca-up to main +b78322969 HEAD@{353}: commit: modifying tests to run in playback mode +d9c75c4fa HEAD@{354}: rebase (finish): returning to refs/heads/functionaca-up +d9c75c4fa HEAD@{355}: rebase (pick): updating help description of container app for kind argument +7991d4e5c HEAD@{356}: rebase (pick): updating help description +ec73d3265 HEAD@{357}: rebase (pick): modifications with the tests +0952444df HEAD@{358}: rebase (pick): adding tests +5b339c435 HEAD@{359}: rebase (pick): fixing a mistake with help description +9fddea88a HEAD@{360}: rebase (pick): adding tests +27f54a07e HEAD@{361}: rebase (pick): rebase commit +e74bd067d (tag: aks-agent-1.0.0b1) HEAD@{362}: rebase (start): checkout main +510acd922 HEAD@{363}: checkout: moving from main to functionaca-up +e74bd067d (tag: aks-agent-1.0.0b1) HEAD@{364}: pull upstream main: Fast-forward +8f6f15dcb HEAD@{365}: checkout: moving from functionaca-up to main +510acd922 HEAD@{366}: commit: updating help description of container app for kind argument +a690a4ab4 HEAD@{367}: rebase (finish): returning to refs/heads/functionaca-up +a690a4ab4 HEAD@{368}: rebase (pick): updating help description +3f0310e63 HEAD@{369}: rebase (pick): modifications with the tests +2928465ca HEAD@{370}: rebase (pick): adding tests +af57c287c HEAD@{371}: rebase (pick): fixing a mistake with help description +f0ba70af6 HEAD@{372}: rebase (pick): adding tests +8e5ad852f HEAD@{373}: commit: rebase commit +8f6f15dcb HEAD@{374}: rebase (start): checkout main +6282f8684 HEAD@{375}: rebase (abort): returning to refs/heads/functionaca-up +8f6f15dcb HEAD@{376}: rebase (start): checkout main +6282f8684 HEAD@{377}: rebase (abort): returning to refs/heads/functionaca-up +6282f8684 HEAD@{378}: rebase (abort): returning to refs/heads/functionaca-up +6282f8684 HEAD@{379}: checkout: moving from main to functionaca-up +8f6f15dcb HEAD@{380}: checkout: moving from 8f6f15dcb92de73b4e0f5cd5173bf2b673e83ac9 to main +8f6f15dcb HEAD@{381}: rebase (start): checkout main +6282f8684 HEAD@{382}: checkout: moving from main to functionaca-up +8f6f15dcb HEAD@{383}: checkout: moving from functionaca-up to main +6282f8684 HEAD@{384}: checkout: moving from main to functionaca-up +8f6f15dcb HEAD@{385}: pull upstream main: Fast-forward +fb7fc37b1 HEAD@{386}: checkout: moving from functionaca-up to main +6282f8684 HEAD@{387}: commit: updating help description +c2384d834 HEAD@{388}: rebase (finish): returning to refs/heads/functionaca-up +c2384d834 HEAD@{389}: rebase (pick): modifications with the tests +d1ab546e7 HEAD@{390}: rebase (pick): adding tests +3bd658532 HEAD@{391}: rebase (pick): fixing a mistake with help description +ff4e14057 HEAD@{392}: rebase (pick): adding tests +74fc63d2a HEAD@{393}: rebase (pick): adding support for kind argument to az containerapp up command +fb7fc37b1 HEAD@{394}: rebase (start): checkout main +f5dde75a8 HEAD@{395}: checkout: moving from main to functionaca-up +fb7fc37b1 HEAD@{396}: pull upstream main: Fast-forward +2ce3925cb HEAD@{397}: checkout: moving from functionaca-up to main +f5dde75a8 HEAD@{398}: commit: modifications with the tests +24b90053b HEAD@{399}: checkout: moving from main to functionaca-up +2ce3925cb HEAD@{400}: checkout: moving from functionaca-up to main +24b90053b HEAD@{401}: rebase (finish): returning to refs/heads/functionaca-up +24b90053b HEAD@{402}: rebase (pick): adding tests +ecf620df3 HEAD@{403}: rebase (pick): fixing a mistake with help description +dc2964891 HEAD@{404}: rebase (pick): adding tests +087ff0e9d HEAD@{405}: rebase (continue): adding support for kind argument to az containerapp up command +2ce3925cb HEAD@{406}: rebase (start): checkout main +9f4a23a99 HEAD@{407}: checkout: moving from main to functionaca-up +2ce3925cb HEAD@{408}: checkout: moving from main to main +2ce3925cb HEAD@{409}: rebase: checkout main +9f4a23a99 HEAD@{410}: checkout: moving from main to functionaca-up +2ce3925cb HEAD@{411}: pull upstream main: Fast-forward +6397bc331 (tag: quantum-1.0.0b8) HEAD@{412}: checkout: moving from functionaca-up to main +9f4a23a99 HEAD@{413}: checkout: moving from functionapp-help to functionaca-up +4d18b0eef (origin/functionapp-help) HEAD@{414}: commit: modifying help description for king argument in containerapp create +e35d94dc9 HEAD@{415}: checkout: moving from functionaca-up to functionapp-help +9f4a23a99 HEAD@{416}: commit: adding tests +783c8d6ea HEAD@{417}: commit: fixing a mistake with help description +05b006924 HEAD@{418}: rebase (finish): returning to refs/heads/functionaca-up +05b006924 HEAD@{419}: rebase (pick): adding tests +175dd7645 HEAD@{420}: rebase (pick): adding support for kind argument to az containerapp up command +6397bc331 (tag: quantum-1.0.0b8) HEAD@{421}: rebase (start): checkout main +a530473ec HEAD@{422}: checkout: moving from main to functionaca-up +6397bc331 (tag: quantum-1.0.0b8) HEAD@{423}: pull upstream main: Fast-forward +9da6c0529 HEAD@{424}: checkout: moving from functionaca-up to main +a530473ec HEAD@{425}: commit: adding tests +b1392943d HEAD@{426}: commit: adding support for kind argument to az containerapp up command +9da6c0529 HEAD@{427}: checkout: moving from main to functionaca-up +9da6c0529 HEAD@{428}: pull upstream main: Fast-forward +9b7f56e46 HEAD@{429}: checkout: moving from functionapp-help to main +e35d94dc9 HEAD@{430}: rebase (finish): returning to refs/heads/functionapp-help +e35d94dc9 HEAD@{431}: rebase (pick): undoing version change +eff14fa4f HEAD@{432}: rebase (pick): fixing help description for kind argument in az containerapp create command +9b7f56e46 HEAD@{433}: rebase (start): checkout main +e961ecac5 HEAD@{434}: commit: undoing version change +b43eb0e6e HEAD@{435}: checkout: moving from containerapp-jobupdate to functionapp-help +ce0e8bf01 (origin/containerapp-jobupdate) HEAD@{436}: checkout: moving from main to containerapp-jobupdate +9b7f56e46 HEAD@{437}: pull upstream main: Fast-forward +77e5c8bbb (tag: fleet-1.6.1) HEAD@{438}: checkout: moving from containerapp-jobupdate to main +ce0e8bf01 (origin/containerapp-jobupdate) HEAD@{439}: rebase (finish): returning to refs/heads/containerapp-jobupdate +ce0e8bf01 (origin/containerapp-jobupdate) HEAD@{440}: rebase (pick): undoing version change +2df192168 HEAD@{441}: rebase (pick): adding tests +c109c7f42 HEAD@{442}: rebase (pick): fixing issue: min/max executions not set in job update azcli +9b7f56e46 HEAD@{443}: rebase (start): checkout upstream/main +049396d36 HEAD@{444}: commit: undoing version change +4e84086ed HEAD@{445}: checkout: moving from functionapp-help to containerapp-jobupdate +b43eb0e6e HEAD@{446}: commit: fixing help description for kind argument in az containerapp create command +77e5c8bbb (tag: fleet-1.6.1) HEAD@{447}: checkout: moving from main to functionapp-help +77e5c8bbb (tag: fleet-1.6.1) HEAD@{448}: checkout: moving from functionapp-help to main +362b2af0f HEAD@{449}: commit: adding version information +00b2a3a07 HEAD@{450}: commit: updating help description for containerapp create kind argument +77e5c8bbb (tag: fleet-1.6.1) HEAD@{451}: checkout: moving from main to functionapp-help +77e5c8bbb (tag: fleet-1.6.1) HEAD@{452}: checkout: moving from containerapp-jobupdate to main +4e84086ed HEAD@{453}: commit: adding tests +e9b6eafa3 HEAD@{454}: checkout: moving from main to containerapp-jobupdate +77e5c8bbb (tag: fleet-1.6.1) HEAD@{455}: checkout: moving from containerapp-jobupdate to main +e9b6eafa3 HEAD@{456}: commit: fixing issue: min/max executions not set in job update azcli +77e5c8bbb (tag: fleet-1.6.1) HEAD@{457}: checkout: moving from main to containerapp-jobupdate +77e5c8bbb (tag: fleet-1.6.1) HEAD@{458}: clone: from https://github.com/khushishah513/azure-cli-extensions.git diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml index 7320b074087..41a730c4267 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml @@ -24,18 +24,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2018-05-01-preview response: body: - string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"cd078327-0000-0200-0000-69144c6e0000\\\"\",\r\n + string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"b908068c-0000-0200-0000-691589140000\\\"\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/appinsights000003\",\r\n \ \"name\": \"appinsights000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n - \ \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n + \ \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"48fd18ac-b4cc-4054-81e1-509139641b19\",\r\n \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n - \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"daf3cb3b-461a-48c7-b6a3-a360ec907ea8\",\r\n - \ \"ConnectionString\": \"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n - \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-11-12T08:59:21.7594362+00:00\",\r\n + \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"0eeef120-d49c-43b8-a4e9-0872758ac768\",\r\n + \ \"ConnectionString\": \"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19\",\r\n + \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-11-13T07:30:23.2533623+00:00\",\r\n \ \"TenantId\": \"cabb33e6-3c92-4907-9d7c-80c7ca9ac327\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": - 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_08b5c44d-d8bc-47b7-8427-987921b829d6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n + 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_48fd18ac-b4cc-4054-81e1-509139641b19_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}" @@ -49,7 +49,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:59:26 GMT + - Thu, 13 Nov 2025 07:30:28 GMT expires: - '-1' pragma: @@ -63,13 +63,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/01544367-081a-47e8-9e82-8ac2dcc09296 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/4c0346c4-bdff-4021-bc9c-80422e7f0593 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 9CD41BBC81704747A47EA94668F31B3B Ref B: PNQ231110908060 Ref C: 2025-11-12T08:59:17Z' + - 'Ref A: 43E520A0EA6747ACACF04EE5A729BA0B Ref B: SG2AA1070304052 Ref C: 2025-11-13T07:30:17Z' x-powered-by: - ASP.NET status: @@ -94,18 +94,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/appinsights000003?api-version=2020-02-02-preview response: body: - string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"cd078327-0000-0200-0000-69144c6e0000\\\"\",\r\n + string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"b908068c-0000-0200-0000-691589140000\\\"\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/appinsights000003\",\r\n \ \"name\": \"appinsights000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n - \ \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n + \ \"ApplicationId\": \"appinsights000003\",\r\n \"AppId\": \"48fd18ac-b4cc-4054-81e1-509139641b19\",\r\n \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n - \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"daf3cb3b-461a-48c7-b6a3-a360ec907ea8\",\r\n - \ \"ConnectionString\": \"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6\",\r\n - \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-11-12T08:59:21.7594362+00:00\",\r\n + \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"0eeef120-d49c-43b8-a4e9-0872758ac768\",\r\n + \ \"ConnectionString\": \"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19\",\r\n + \ \"Name\": \"appinsights000003\",\r\n \"CreationDate\": \"2025-11-13T07:30:23.2533623+00:00\",\r\n \ \"TenantId\": \"cabb33e6-3c92-4907-9d7c-80c7ca9ac327\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": - 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_08b5c44d-d8bc-47b7-8427-987921b829d6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n + 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_appinsights000003_48fd18ac-b4cc-4054-81e1-509139641b19_managed/providers/Microsoft.OperationalInsights/workspaces/managed-appinsights000003-ws\",\r\n \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}" @@ -119,7 +119,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:59:47 GMT + - Thu, 13 Nov 2025 07:30:49 GMT expires: - '-1' pragma: @@ -135,7 +135,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 952414CCBC954AE7B0BADC0CEEB6C093 Ref B: PNQ231110906060 Ref C: 2025-11-12T08:59:47Z' + - 'Ref A: 321DA6294BE24BE7AEE13B75C378AC87 Ref B: SG2AA1070301052 Ref C: 2025-11-13T07:30:49Z' x-powered-by: - ASP.NET status: @@ -471,7 +471,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:59:49 GMT + - Thu, 13 Nov 2025 07:30:53 GMT expires: - '-1' pragma: @@ -485,7 +485,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0605D250414B4A47AED5E190FA800D2C Ref B: PNQ231110906060 Ref C: 2025-11-12T08:59:49Z' + - 'Ref A: CA149C6671984790920DA1131FAA6D19 Ref B: SG2AA1070306060 Ref C: 2025-11-13T07:30:52Z' status: code: 200 message: OK @@ -506,11 +506,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:19:42.0148519","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:19:42.0148519"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happybay-3a5cf664.eastus2.azurecontainerapps.io","staticIp":"20.15.83.230","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -520,11 +520,11 @@ interactions: cache-control: - no-cache content-length: - - '1732' + - '1729' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:59:49 GMT + - Thu, 13 Nov 2025 07:30:54 GMT expires: - '-1' pragma: @@ -540,7 +540,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D828E329DA8A4207BD7749620116B18C Ref B: PNQ231110908052 Ref C: 2025-11-12T08:59:50Z' + - 'Ref A: 0827C8BF2A9549B98CE6E00B5D518B9F Ref B: SG2AA1070301054 Ref C: 2025-11-13T07:30:54Z' x-powered-by: - ASP.NET status: @@ -876,7 +876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:31 GMT + - Thu, 13 Nov 2025 07:32:35 GMT expires: - '-1' pragma: @@ -890,7 +890,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 85EEBA4A4C1F42019F42ABD71B47CD0B Ref B: PNQ231110906060 Ref C: 2025-11-12T09:01:31Z' + - 'Ref A: E5CA48C1C1764DB78D766892FEB253B1 Ref B: SG2AA1070303040 Ref C: 2025-11-13T07:32:35Z' status: code: 200 message: OK @@ -911,11 +911,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:19:42.0148519","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:19:42.0148519"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happybay-3a5cf664.eastus2.azurecontainerapps.io","staticIp":"20.15.83.230","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -925,11 +925,11 @@ interactions: cache-control: - no-cache content-length: - - '1732' + - '1729' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:33 GMT + - Thu, 13 Nov 2025 07:32:37 GMT expires: - '-1' pragma: @@ -945,7 +945,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F936F84C027A4E14978A7DDCF6655050 Ref B: PNQ231110907042 Ref C: 2025-11-12T09:01:32Z' + - 'Ref A: E7D3FF05DEC843F1A2B93B1AC857D5E9 Ref B: SG2AA1070301062 Ref C: 2025-11-13T07:32:36Z' x-powered-by: - ASP.NET status: @@ -1281,7 +1281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:33 GMT + - Thu, 13 Nov 2025 07:32:38 GMT expires: - '-1' pragma: @@ -1295,7 +1295,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D9D037A57D684307A271A6FFFAB6FE6C Ref B: PNQ231110908031 Ref C: 2025-11-12T09:01:33Z' + - 'Ref A: E96D80141AF8487C8169E904528C5CE4 Ref B: SG2AA1070301042 Ref C: 2025-11-13T07:32:38Z' status: code: 200 message: OK @@ -1330,11 +1330,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:32:43.3904451Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:32:43.3904451Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000004"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1342,15 +1342,15 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159644060531&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=jhKvuEk0qRj97gh0_mAE3sYe93lNEKdJfzY0yl-yV4i4EUq4baNPUEhiLjHr3s2uWrASC1ZQUbF7bs9FjJfEHA3574A-TZtsGVmB7wGtzByVCxevP70vPXzvKe0UvKskNT6jodX3qfmhWQUV1Jh_-TwezOOB2OZa8CUEg95yHUbEiAxn0_bdUtLtd3F0vK5w2b0fK4rgr0zd2LCh57WrNt7Ddr05BbgYnaumM81-9IAd26aygcJYvGcyCiBKWV3L76I5ezUzH_t1pyjSg7dzxTD0daauO2GRQ2DivAOD8NORsJEXfOykf93A2xueGOKr8uPq9pKdsnuE7A2uVAcCsw&h=sJG3HVttcYMf94MLwXFKxFO1gxrdtEYe2UzhSiLJPHg cache-control: - no-cache content-length: - - '1914' + - '1916' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:35 GMT + - Thu, 13 Nov 2025 07:32:43 GMT expires: - '-1' pragma: @@ -1364,11 +1364,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ff03e86d-59f9-446a-9108-c4e1a87142d9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/b8c02e83-d5cd-476c-9f2c-6c67692a602a x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: E25F8A1AB3AF4688ADB3F8516D83C96F Ref B: PNQ231110906062 Ref C: 2025-11-12T09:01:34Z' + - 'Ref A: 059F31351B2240DDA4A3CEB58EF68D75 Ref B: SG2AA1070306062 Ref C: 2025-11-13T07:32:39Z' x-powered-by: - ASP.NET status: @@ -1391,10 +1391,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159644060531&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=jhKvuEk0qRj97gh0_mAE3sYe93lNEKdJfzY0yl-yV4i4EUq4baNPUEhiLjHr3s2uWrASC1ZQUbF7bs9FjJfEHA3574A-TZtsGVmB7wGtzByVCxevP70vPXzvKe0UvKskNT6jodX3qfmhWQUV1Jh_-TwezOOB2OZa8CUEg95yHUbEiAxn0_bdUtLtd3F0vK5w2b0fK4rgr0zd2LCh57WrNt7Ddr05BbgYnaumM81-9IAd26aygcJYvGcyCiBKWV3L76I5ezUzH_t1pyjSg7dzxTD0daauO2GRQ2DivAOD8NORsJEXfOykf93A2xueGOKr8uPq9pKdsnuE7A2uVAcCsw&h=sJG3HVttcYMf94MLwXFKxFO1gxrdtEYe2UzhSiLJPHg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e","name":"01c72fb5-e142-43fd-96c8-e4d8c24eda0e","status":"InProgress","startTime":"2025-11-13T07:32:44.0154208"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1408,7 +1408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:36 GMT + - Thu, 13 Nov 2025 07:32:44 GMT expires: - '-1' pragma: @@ -1422,11 +1422,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/eb5fa3ca-b985-4fe4-93b9-49780b397c8f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/a0a619f2-825e-4e7b-8147-6010b164639e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B7F10197A7E94D9BB45EC0A2F8734CE6 Ref B: PNQ231110909062 Ref C: 2025-11-12T09:01:35Z' + - 'Ref A: 131FD8257E194B54A20BF5D675E6C87E Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:32:44Z' x-powered-by: - ASP.NET status: @@ -1449,10 +1449,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159644060531&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=jhKvuEk0qRj97gh0_mAE3sYe93lNEKdJfzY0yl-yV4i4EUq4baNPUEhiLjHr3s2uWrASC1ZQUbF7bs9FjJfEHA3574A-TZtsGVmB7wGtzByVCxevP70vPXzvKe0UvKskNT6jodX3qfmhWQUV1Jh_-TwezOOB2OZa8CUEg95yHUbEiAxn0_bdUtLtd3F0vK5w2b0fK4rgr0zd2LCh57WrNt7Ddr05BbgYnaumM81-9IAd26aygcJYvGcyCiBKWV3L76I5ezUzH_t1pyjSg7dzxTD0daauO2GRQ2DivAOD8NORsJEXfOykf93A2xueGOKr8uPq9pKdsnuE7A2uVAcCsw&h=sJG3HVttcYMf94MLwXFKxFO1gxrdtEYe2UzhSiLJPHg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e","name":"01c72fb5-e142-43fd-96c8-e4d8c24eda0e","status":"InProgress","startTime":"2025-11-13T07:32:44.0154208"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1466,7 +1466,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:38 GMT + - Thu, 13 Nov 2025 07:32:48 GMT expires: - '-1' pragma: @@ -1480,11 +1480,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/ab9ebfd1-e17c-442a-9161-4e23effa5b66 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/3368d997-8d8b-4563-a595-df3efb86471f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1B295018DA66455B973C3D295105BD5F Ref B: PNQ231110909042 Ref C: 2025-11-12T09:01:38Z' + - 'Ref A: CD015E4E8D95410A87708A36129BA666 Ref B: SG2AA1070301025 Ref C: 2025-11-13T07:32:47Z' x-powered-by: - ASP.NET status: @@ -1507,10 +1507,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159644060531&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=jhKvuEk0qRj97gh0_mAE3sYe93lNEKdJfzY0yl-yV4i4EUq4baNPUEhiLjHr3s2uWrASC1ZQUbF7bs9FjJfEHA3574A-TZtsGVmB7wGtzByVCxevP70vPXzvKe0UvKskNT6jodX3qfmhWQUV1Jh_-TwezOOB2OZa8CUEg95yHUbEiAxn0_bdUtLtd3F0vK5w2b0fK4rgr0zd2LCh57WrNt7Ddr05BbgYnaumM81-9IAd26aygcJYvGcyCiBKWV3L76I5ezUzH_t1pyjSg7dzxTD0daauO2GRQ2DivAOD8NORsJEXfOykf93A2xueGOKr8uPq9pKdsnuE7A2uVAcCsw&h=sJG3HVttcYMf94MLwXFKxFO1gxrdtEYe2UzhSiLJPHg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e","name":"01c72fb5-e142-43fd-96c8-e4d8c24eda0e","status":"InProgress","startTime":"2025-11-13T07:32:44.0154208"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1524,7 +1524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:41 GMT + - Thu, 13 Nov 2025 07:32:51 GMT expires: - '-1' pragma: @@ -1538,11 +1538,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/d320dbee-bd0a-468d-83dd-3cdbbd3a5383 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/a2a6e8f5-d60c-4b8f-b630-ac3ad884c758 x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: C10530F8AD39410998CDEF0ACFABC3E7 Ref B: PNQ231110908029 Ref C: 2025-11-12T09:01:41Z' + - 'Ref A: 6BDB699B50BF4FF7941F0C2A1837B15E Ref B: SG2AA1070306036 Ref C: 2025-11-13T07:32:51Z' x-powered-by: - ASP.NET status: @@ -1565,10 +1565,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159644060531&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=jhKvuEk0qRj97gh0_mAE3sYe93lNEKdJfzY0yl-yV4i4EUq4baNPUEhiLjHr3s2uWrASC1ZQUbF7bs9FjJfEHA3574A-TZtsGVmB7wGtzByVCxevP70vPXzvKe0UvKskNT6jodX3qfmhWQUV1Jh_-TwezOOB2OZa8CUEg95yHUbEiAxn0_bdUtLtd3F0vK5w2b0fK4rgr0zd2LCh57WrNt7Ddr05BbgYnaumM81-9IAd26aygcJYvGcyCiBKWV3L76I5ezUzH_t1pyjSg7dzxTD0daauO2GRQ2DivAOD8NORsJEXfOykf93A2xueGOKr8uPq9pKdsnuE7A2uVAcCsw&h=sJG3HVttcYMf94MLwXFKxFO1gxrdtEYe2UzhSiLJPHg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"InProgress","startTime":"2025-11-12T09:01:35.2369858"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e","name":"01c72fb5-e142-43fd-96c8-e4d8c24eda0e","status":"InProgress","startTime":"2025-11-13T07:32:44.0154208"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1582,7 +1582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:43 GMT + - Thu, 13 Nov 2025 07:32:54 GMT expires: - '-1' pragma: @@ -1596,11 +1596,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/23ce7a5a-e924-4913-9cb2-88c34b65a105 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/3eb83072-257a-453d-ac28-0538371e8fba x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D6B7D7291212485DAA46361675C7A956 Ref B: PNQ231110907025 Ref C: 2025-11-12T09:01:44Z' + - 'Ref A: A4D7A8C8F0B3407C90B9217E043284F4 Ref B: SG2AA1070304054 Ref C: 2025-11-13T07:32:54Z' x-powered-by: - ASP.NET status: @@ -1623,10 +1623,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985348953059949&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=c2djDIgk52j3c5npGTXWzOj8M_fTR0jP7mYH3pTQI36CDptQhRzyyiD0wwmSuQyiBRQr6sRCFBmE-KXKeWRRbnIZ1Hyn2_pcv2rclObF18jIDB6Vxmp8lBWP582leVPNyrDT4xSrAb7L_6EwNS5Rnl8tkP1n_RtF0MTsgrJC7JCShV_FKs5WReC3p4xX9m5nRWk_MGJ1kG7sj3_F-a3Ivg2YnjrVc_cM2TiZUgu6iDwnJLMgarTPqvXyna4JftwpOjs3HSpwCmVLHU9yOJObuJ0dNXx5Ek9Mw2TvvvFs_5QZ9wpV9ifiiCZ7yHORTJWbIxdeFPChw5gykRWH5rGsbQ&h=Z5mAVk_z3MrScYUewpNQiUriMmudly9O2b-E_c08pf0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159644060531&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=jhKvuEk0qRj97gh0_mAE3sYe93lNEKdJfzY0yl-yV4i4EUq4baNPUEhiLjHr3s2uWrASC1ZQUbF7bs9FjJfEHA3574A-TZtsGVmB7wGtzByVCxevP70vPXzvKe0UvKskNT6jodX3qfmhWQUV1Jh_-TwezOOB2OZa8CUEg95yHUbEiAxn0_bdUtLtd3F0vK5w2b0fK4rgr0zd2LCh57WrNt7Ddr05BbgYnaumM81-9IAd26aygcJYvGcyCiBKWV3L76I5ezUzH_t1pyjSg7dzxTD0daauO2GRQ2DivAOD8NORsJEXfOykf93A2xueGOKr8uPq9pKdsnuE7A2uVAcCsw&h=sJG3HVttcYMf94MLwXFKxFO1gxrdtEYe2UzhSiLJPHg response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4ab0e70c-1133-4cc9-8736-0f00f91fc009","name":"4ab0e70c-1133-4cc9-8736-0f00f91fc009","status":"Succeeded","startTime":"2025-11-12T09:01:35.2369858"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/01c72fb5-e142-43fd-96c8-e4d8c24eda0e","name":"01c72fb5-e142-43fd-96c8-e4d8c24eda0e","status":"Succeeded","startTime":"2025-11-13T07:32:44.0154208"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1640,7 +1640,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:47 GMT + - Thu, 13 Nov 2025 07:32:57 GMT expires: - '-1' pragma: @@ -1654,11 +1654,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/a109f4d8-5814-4b1e-ad3f-6c318606cf89 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/16784d1f-4fc5-4cad-903a-b0936dd06465 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC21C097370549E6BD9DB2FF58C876F9 Ref B: PNQ231110908042 Ref C: 2025-11-12T09:01:46Z' + - 'Ref A: 49E3BD6B1FC94D1A97BE16223077BE31 Ref B: SG2AA1070306029 Ref C: 2025-11-13T07:32:57Z' x-powered-by: - ASP.NET status: @@ -1681,11 +1681,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"containerapp000004--ec84vxt","latestReadyRevisionName":"containerapp000004--ec84vxt","latestRevisionFqdn":"containerapp000004--ec84vxt.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:32:43.3904451","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:32:43.3904451"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"containerapp000004--d49aekr","latestReadyRevisionName":"containerapp000004--d49aekr","latestRevisionFqdn":"containerapp000004--d49aekr.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1699,7 +1699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:47 GMT + - Thu, 13 Nov 2025 07:32:59 GMT expires: - '-1' pragma: @@ -1715,7 +1715,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6072CE903983487591F2C4FF689AB634 Ref B: PNQ231110908023 Ref C: 2025-11-12T09:01:47Z' + - 'Ref A: 1AF1CDE613224E29BBA700D850C7AC14 Ref B: SG2AA1070305023 Ref C: 2025-11-13T07:32:58Z' x-powered-by: - ASP.NET status: @@ -2051,7 +2051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:49 GMT + - Thu, 13 Nov 2025 07:33:00 GMT expires: - '-1' pragma: @@ -2065,7 +2065,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 09EA03B3E1984D78A1BEBE351F38597A Ref B: PNQ231110906034 Ref C: 2025-11-12T09:01:49Z' + - 'Ref A: 6595C9A1D8534844BF89D4040B5EC560 Ref B: SG2AA1070301029 Ref C: 2025-11-13T07:33:00Z' status: code: 200 message: OK @@ -2086,11 +2086,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:19:42.0148519","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:19:42.0148519"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happybay-3a5cf664.eastus2.azurecontainerapps.io","staticIp":"20.15.83.230","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2100,11 +2100,11 @@ interactions: cache-control: - no-cache content-length: - - '1732' + - '1729' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:50 GMT + - Thu, 13 Nov 2025 07:33:02 GMT expires: - '-1' pragma: @@ -2120,7 +2120,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B1276FED72AB4D0198CB49878624A70D Ref B: PNQ231110909040 Ref C: 2025-11-12T09:01:50Z' + - 'Ref A: 2C7B4C3F208C416DB53E9D486DC9ED77 Ref B: SG2AA1070306025 Ref C: 2025-11-13T07:33:01Z' x-powered-by: - ASP.NET status: @@ -2456,7 +2456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:50 GMT + - Thu, 13 Nov 2025 07:33:02 GMT expires: - '-1' pragma: @@ -2470,7 +2470,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5C927C9A535A4927BADF619B06383EE1 Ref B: PNQ231110908025 Ref C: 2025-11-12T09:01:51Z' + - 'Ref A: 44B24FC320A741BD93680D2611895311 Ref B: SG2AA1070303036 Ref C: 2025-11-13T07:33:02Z' status: code: 200 message: OK @@ -2484,7 +2484,7 @@ interactions: null, "service": null}, "template": {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0", "name": "functionapp000002", "command": null, "args": null, "env": [{"name": "APPLICATIONINSIGHTS_CONNECTION_STRING", - "value": "InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}], + "value": "InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}], "resources": null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": null, "serviceBinds": null}, "workloadProfileName": null}, "tags": null, "kind": "functionapp"}' @@ -2507,11 +2507,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2519,15 +2519,15 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159838586715&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=wjCs15A7NrJ8FE8dUS94ikSQ67A-n1ET7rr9jDO-lwlElzNxklv1dR0z8zWvxM2sFCpPv3WYahg-U829KUiRRZglsPGaY4JVTSKqGD5wwIKVKVHtaFOS7VKKBEwYyxxOtihfZheRNLvqfT1UIC_J2j22mQH6s2nnIDyYqi5s0gSllDN8Z0RfcOBkyniHmoBWuBKh0g2aGd_0r5EXJ8wUiT6SopIxGcn70SpdbNDEB4ZriTIwrqC0JB7smUDEHDTHruCCmqvTmKZr7K6REPPE6s1eRWDPEe2YVcsINbV3FLrDES9CACy4BXW5FCSJBasrlqo46GybAluPufO2xQtgqQ&h=oCVW8yxPcGmL-8AJCLykTFIbateuSvcBinoykq7vJFI cache-control: - no-cache content-length: - - '2242' + - '2244' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:56 GMT + - Thu, 13 Nov 2025 07:33:03 GMT expires: - '-1' pragma: @@ -2541,11 +2541,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/b51a5e68-60ff-4b63-a791-2ee5e9483dbf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/65c6fa13-0db2-435d-8d22-a966d7cceb87 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: 490501A36EA5488FA40BFA5B29B84547 Ref B: PNQ231110907029 Ref C: 2025-11-12T09:01:52Z' + - 'Ref A: 36EE4F2EB79A4370A9FF02CDCBC02BF3 Ref B: SG2AA1070304023 Ref C: 2025-11-13T07:33:03Z' x-powered-by: - ASP.NET status: @@ -2568,10 +2568,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159838586715&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=wjCs15A7NrJ8FE8dUS94ikSQ67A-n1ET7rr9jDO-lwlElzNxklv1dR0z8zWvxM2sFCpPv3WYahg-U829KUiRRZglsPGaY4JVTSKqGD5wwIKVKVHtaFOS7VKKBEwYyxxOtihfZheRNLvqfT1UIC_J2j22mQH6s2nnIDyYqi5s0gSllDN8Z0RfcOBkyniHmoBWuBKh0g2aGd_0r5EXJ8wUiT6SopIxGcn70SpdbNDEB4ZriTIwrqC0JB7smUDEHDTHruCCmqvTmKZr7K6REPPE6s1eRWDPEe2YVcsINbV3FLrDES9CACy4BXW5FCSJBasrlqo46GybAluPufO2xQtgqQ&h=oCVW8yxPcGmL-8AJCLykTFIbateuSvcBinoykq7vJFI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba","name":"a6f42123-8ae0-48d8-aa59-700526ce08ba","status":"InProgress","startTime":"2025-11-13T07:33:03.7984915"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2585,7 +2585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:01:57 GMT + - Thu, 13 Nov 2025 07:33:05 GMT expires: - '-1' pragma: @@ -2599,11 +2599,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/860cfb68-962c-4e8e-9d7f-234014dd10d3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0fa0ff25-18fa-4acd-8ce4-11bdc04802aa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5D131B0B43CE4716A005391B41CCE48C Ref B: PNQ231110909054 Ref C: 2025-11-12T09:01:56Z' + - 'Ref A: 678260216043405B8D309CA5DB9D2B88 Ref B: SG2AA1070306040 Ref C: 2025-11-13T07:33:04Z' x-powered-by: - ASP.NET status: @@ -2626,10 +2626,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159838586715&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=wjCs15A7NrJ8FE8dUS94ikSQ67A-n1ET7rr9jDO-lwlElzNxklv1dR0z8zWvxM2sFCpPv3WYahg-U829KUiRRZglsPGaY4JVTSKqGD5wwIKVKVHtaFOS7VKKBEwYyxxOtihfZheRNLvqfT1UIC_J2j22mQH6s2nnIDyYqi5s0gSllDN8Z0RfcOBkyniHmoBWuBKh0g2aGd_0r5EXJ8wUiT6SopIxGcn70SpdbNDEB4ZriTIwrqC0JB7smUDEHDTHruCCmqvTmKZr7K6REPPE6s1eRWDPEe2YVcsINbV3FLrDES9CACy4BXW5FCSJBasrlqo46GybAluPufO2xQtgqQ&h=oCVW8yxPcGmL-8AJCLykTFIbateuSvcBinoykq7vJFI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba","name":"a6f42123-8ae0-48d8-aa59-700526ce08ba","status":"InProgress","startTime":"2025-11-13T07:33:03.7984915"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2643,7 +2643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:00 GMT + - Thu, 13 Nov 2025 07:33:08 GMT expires: - '-1' pragma: @@ -2657,11 +2657,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e3c51743-71bf-4af8-a442-1a7e548831cb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/be24d6c1-900d-485e-a268-989514916444 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 566F6BB719D840C18DD400E1E8C25ABE Ref B: PNQ231110906025 Ref C: 2025-11-12T09:02:00Z' + - 'Ref A: 0C507C9208F443F2A29D912D32ADFA5E Ref B: SG2AA1070301036 Ref C: 2025-11-13T07:33:07Z' x-powered-by: - ASP.NET status: @@ -2684,10 +2684,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159838586715&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=wjCs15A7NrJ8FE8dUS94ikSQ67A-n1ET7rr9jDO-lwlElzNxklv1dR0z8zWvxM2sFCpPv3WYahg-U829KUiRRZglsPGaY4JVTSKqGD5wwIKVKVHtaFOS7VKKBEwYyxxOtihfZheRNLvqfT1UIC_J2j22mQH6s2nnIDyYqi5s0gSllDN8Z0RfcOBkyniHmoBWuBKh0g2aGd_0r5EXJ8wUiT6SopIxGcn70SpdbNDEB4ZriTIwrqC0JB7smUDEHDTHruCCmqvTmKZr7K6REPPE6s1eRWDPEe2YVcsINbV3FLrDES9CACy4BXW5FCSJBasrlqo46GybAluPufO2xQtgqQ&h=oCVW8yxPcGmL-8AJCLykTFIbateuSvcBinoykq7vJFI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba","name":"a6f42123-8ae0-48d8-aa59-700526ce08ba","status":"InProgress","startTime":"2025-11-13T07:33:03.7984915"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2701,7 +2701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:03 GMT + - Thu, 13 Nov 2025 07:33:11 GMT expires: - '-1' pragma: @@ -2715,11 +2715,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/abcd33bb-377a-4eca-8917-a93fce38d9dd + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/4b882fb5-af4d-41ca-b971-de345c93498a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C0651EEFBA48460D84B4B0478C8F7596 Ref B: PNQ231110906062 Ref C: 2025-11-12T09:02:03Z' + - 'Ref A: FA1FFFE7491C4BCB8EFAC0165B6A72E5 Ref B: SG2AA1070304052 Ref C: 2025-11-13T07:33:11Z' x-powered-by: - ASP.NET status: @@ -2742,10 +2742,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986159838586715&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=wjCs15A7NrJ8FE8dUS94ikSQ67A-n1ET7rr9jDO-lwlElzNxklv1dR0z8zWvxM2sFCpPv3WYahg-U829KUiRRZglsPGaY4JVTSKqGD5wwIKVKVHtaFOS7VKKBEwYyxxOtihfZheRNLvqfT1UIC_J2j22mQH6s2nnIDyYqi5s0gSllDN8Z0RfcOBkyniHmoBWuBKh0g2aGd_0r5EXJ8wUiT6SopIxGcn70SpdbNDEB4ZriTIwrqC0JB7smUDEHDTHruCCmqvTmKZr7K6REPPE6s1eRWDPEe2YVcsINbV3FLrDES9CACy4BXW5FCSJBasrlqo46GybAluPufO2xQtgqQ&h=oCVW8yxPcGmL-8AJCLykTFIbateuSvcBinoykq7vJFI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"InProgress","startTime":"2025-11-12T09:01:56.3170219"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a6f42123-8ae0-48d8-aa59-700526ce08ba","name":"a6f42123-8ae0-48d8-aa59-700526ce08ba","status":"Succeeded","startTime":"2025-11-13T07:33:03.7984915"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2755,11 +2755,11 @@ interactions: cache-control: - no-cache content-length: - - '279' + - '278' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:05 GMT + - Thu, 13 Nov 2025 07:33:15 GMT expires: - '-1' pragma: @@ -2773,11 +2773,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/9a7574e9-9bd7-4135-81be-820c7cc552b7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/98c265c8-f311-48a8-880d-eb5246d54c92 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D032BFBB55344F6ADFD5FBCF1765419 Ref B: PNQ231110908031 Ref C: 2025-11-12T09:02:05Z' + - 'Ref A: 24349D37FE9F40F7BC15C0DF2120B602 Ref B: SG2AA1070303029 Ref C: 2025-11-13T07:33:14Z' x-powered-by: - ASP.NET status: @@ -2800,10 +2800,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985349167497044&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=eVkkb5iX19p8M9T9zarpryjrIQppZsKMTzqzEGQeLU0tmxXGfTFJMY5DwJ8AGK2j3AZnDn51chbIIAqbQp7hHBCc96xLapZmeQP-SiocW7v00O4uI7RBtNhhsKBKghq1tLjyfP8e5nDXzhSf08Hy1s4LTTciA0otWM_gTsWRr_oQRwigcGQ5lrOaL_FZMPleKLVWhNDXeUCTwuydzfm9bMjqHueCMDFT0Aou8hNuN-ZdoNKP72F9anW6J0uWKSuXoxNO5xBuEV1knEcadNsxyy5P-2AEypS5jUbegaUjF7d-qrgGDkpSBI6yrpojpaCzz19UFdgFgkx0fbhv1rGJKg&h=9wjk9xbnahAIHSGgbtyOBmCV7Y5-Yzc-k5weUUgdvQI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/82eb958d-10a9-43d0-a1e4-d8ca5bffb221","name":"82eb958d-10a9-43d0-a1e4-d8ca5bffb221","status":"Succeeded","startTime":"2025-11-12T09:01:56.3170219"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2813,11 +2814,11 @@ interactions: cache-control: - no-cache content-length: - - '278' + - '2906' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:10 GMT + - Thu, 13 Nov 2025 07:33:16 GMT expires: - '-1' pragma: @@ -2830,12 +2831,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/6907f425-7e3b-4a05-a13e-a5b169b6f5e1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D68DD536B434A64B5D16F53646452BC Ref B: PNQ231110909054 Ref C: 2025-11-12T09:02:08Z' + - 'Ref A: 139F280538704B79BA9AB997C882BA9D Ref B: SG2AA1070305052 Ref C: 2025-11-13T07:33:15Z' x-powered-by: - ASP.NET status: @@ -2849,20 +2848,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - containerapp create + - containerapp revision list Connection: - keep-alive ParameterSetName: - - -g -n --image --ingress --target-port --environment --kind --env-vars + - -g -n User-Agent: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t","name":"functionapp000002--477jv7t","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:33:09+00:00","fqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2872,11 +2870,11 @@ interactions: cache-control: - no-cache content-length: - - '2906' + - '1261' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:11 GMT + - Thu, 13 Nov 2025 07:33:17 GMT expires: - '-1' pragma: @@ -2889,10 +2887,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/399ae046-c286-4189-af58-288c9da8e777 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 37D1DE3699EA4BDF85498E82893E3F26 Ref B: PNQ231110909025 Ref C: 2025-11-12T09:02:10Z' + - 'Ref A: E33669C0DA6B4A3DB81A1417D486AFCB Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:33:18Z' x-powered-by: - ASP.NET status: @@ -2918,9 +2918,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating","runningStateDetails":"The - TargetPort 80 does not match the listening port 44683. The TargetPort 80 does - not match any of the listening ports: [46827 44683]."}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t","name":"functionapp000002--477jv7t","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:33:09+00:00","fqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2930,11 +2928,11 @@ interactions: cache-control: - no-cache content-length: - - '1421' + - '1261' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:12 GMT + - Thu, 13 Nov 2025 07:33:30 GMT expires: - '-1' pragma: @@ -2948,11 +2946,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1a36f94c-f31e-4622-b35c-a73014036b4d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/8056f13f-79ed-491e-850d-22738970c515 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D3F91CD32B5A4D7395010D06C3007C3B Ref B: PNQ231110909052 Ref C: 2025-11-12T09:02:12Z' + - 'Ref A: 061EF2AB17C94576916E7F7F2B207A49 Ref B: SG2AA1070304029 Ref C: 2025-11-13T07:33:29Z' x-powered-by: - ASP.NET status: @@ -2978,7 +2976,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t","name":"functionapp000002--477jv7t","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:33:09+00:00","fqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2988,11 +2986,11 @@ interactions: cache-control: - no-cache content-length: - - '1334' + - '1333' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:24 GMT + - Thu, 13 Nov 2025 07:33:42 GMT expires: - '-1' pragma: @@ -3006,11 +3004,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/23096420-61a5-4b19-b6ef-fc11a7e2da47 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/beffdb60-87b6-4123-9139-71baa7fe478c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B1BFE304F2824DB08E5F4397EAD28AC6 Ref B: PNQ231110906052 Ref C: 2025-11-12T09:02:23Z' + - 'Ref A: 8AC3B75B23934A9FA8758E21E1A58210 Ref B: SG2AA1070305042 Ref C: 2025-11-13T07:33:41Z' x-powered-by: - ASP.NET status: @@ -3033,11 +3031,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3051,7 +3049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:25 GMT + - Thu, 13 Nov 2025 07:33:44 GMT expires: - '-1' pragma: @@ -3067,7 +3065,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1297091863384B27B1E9227D7DB65E95 Ref B: PNQ231110906054 Ref C: 2025-11-12T09:02:25Z' + - 'Ref A: E074D054E3FF4401BECBC8A3858BFFF8 Ref B: SG2AA1070304052 Ref C: 2025-11-13T07:33:44Z' x-powered-by: - ASP.NET status: @@ -3090,12 +3088,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd","name":"functionapp000002--qp749le-7784f8b4b9-l68gd","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T09:02:02Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000002","containerId":"containerd://c07062f3f7b4b53196dab483583583892390cd6c4527ac21770daa5c2b4f2488","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 9:02:08 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/functionapp000002/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/functionapp000002/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/debug?targetContainer=functionapp000002"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://f5f4d8f98287eb40e18e0b2d1ae1f80ad109e86aef5ad5e691124ee689d11758","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--qp749le/replicas/functionapp000002--qp749le-7784f8b4b9-l68gd/debug?targetContainer=metadata-check"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas/functionapp000002--477jv7t-5b95d4b4f7-nnr56","name":"functionapp000002--477jv7t-5b95d4b4f7-nnr56","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:33:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000002","containerId":"containerd://4a76de6904ea898af3dfd65beb18def5c34e922bf5c38407c9a0809d2a9270b6","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:33:26 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas/functionapp000002--477jv7t-5b95d4b4f7-nnr56/containers/functionapp000002/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas/functionapp000002--477jv7t-5b95d4b4f7-nnr56/containers/functionapp000002/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas/functionapp000002--477jv7t-5b95d4b4f7-nnr56/debug?targetContainer=functionapp000002"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://aa03a0fc67024f8b6689d313890832105a116f9b7bf4adc99a5fc41ecda8f1a6","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas/functionapp000002--477jv7t-5b95d4b4f7-nnr56/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas/functionapp000002--477jv7t-5b95d4b4f7-nnr56/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/revisions/functionapp000002--477jv7t/replicas/functionapp000002--477jv7t-5b95d4b4f7-nnr56/debug?targetContainer=metadata-check"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3109,7 +3107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:25 GMT + - Thu, 13 Nov 2025 07:33:45 GMT expires: - '-1' pragma: @@ -3123,11 +3121,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7ab20cd2-b147-4aa0-b100-11f541b028eb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/88c69fb6-dd53-43d3-8bd8-5144804a680b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C7C0EFBE5E6A4BDBACA28507C25F0A4D Ref B: PNQ231110909029 Ref C: 2025-11-12T09:02:25Z' + - 'Ref A: B93AED0C7D334323A8D5C30A6F5C58A7 Ref B: SG2AA1070306040 Ref C: 2025-11-13T07:33:45Z' x-powered-by: - ASP.NET status: @@ -3463,7 +3461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:27 GMT + - Thu, 13 Nov 2025 07:33:47 GMT expires: - '-1' pragma: @@ -3477,7 +3475,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C964F05C64C6415988D0F75545BFA744 Ref B: PNQ231110906031 Ref C: 2025-11-12T09:02:27Z' + - 'Ref A: 08EB6E990B9D43A4B5B03CFF888E28DB Ref B: SG2AA1070304036 Ref C: 2025-11-13T07:33:47Z' status: code: 200 message: OK @@ -3498,11 +3496,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3516,7 +3514,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:27 GMT + - Thu, 13 Nov 2025 07:33:49 GMT expires: - '-1' pragma: @@ -3532,7 +3530,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BCD62F5C5F06481BA2A750FC84DC767D Ref B: PNQ231110906023 Ref C: 2025-11-12T09:02:27Z' + - 'Ref A: 84C3D008B6264DE59D910B490A154D94 Ref B: SG2AA1070304029 Ref C: 2025-11-13T07:33:48Z' x-powered-by: - ASP.NET status: @@ -3552,7 +3550,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.happybay-3a5cf664.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3560,9 +3558,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:28 GMT + - Thu, 13 Nov 2025 07:33:50 GMT request-context: - - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + - appId=cid-v1:48fd18ac-b4cc-4054-81e1-509139641b19 server: - Kestrel transfer-encoding: @@ -3584,7 +3582,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.happybay-3a5cf664.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3592,9 +3590,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:30 GMT + - Thu, 13 Nov 2025 07:33:51 GMT request-context: - - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + - appId=cid-v1:48fd18ac-b4cc-4054-81e1-509139641b19 server: - Kestrel transfer-encoding: @@ -3616,7 +3614,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.happybay-3a5cf664.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3624,9 +3622,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:31 GMT + - Thu, 13 Nov 2025 07:33:52 GMT request-context: - - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + - appId=cid-v1:48fd18ac-b4cc-4054-81e1-509139641b19 server: - Kestrel transfer-encoding: @@ -3648,7 +3646,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.happybay-3a5cf664.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3656,9 +3654,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:32 GMT + - Thu, 13 Nov 2025 07:33:53 GMT request-context: - - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + - appId=cid-v1:48fd18ac-b4cc-4054-81e1-509139641b19 server: - Kestrel transfer-encoding: @@ -3680,7 +3678,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.happybay-3a5cf664.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3688,9 +3686,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:33 GMT + - Thu, 13 Nov 2025 07:33:54 GMT request-context: - - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + - appId=cid-v1:48fd18ac-b4cc-4054-81e1-509139641b19 server: - Kestrel transfer-encoding: @@ -3712,7 +3710,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.happybay-3a5cf664.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3720,9 +3718,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:33 GMT + - Thu, 13 Nov 2025 07:33:55 GMT request-context: - - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + - appId=cid-v1:48fd18ac-b4cc-4054-81e1-509139641b19 server: - Kestrel transfer-encoding: @@ -3744,7 +3742,7 @@ interactions: User-Agent: - python-requests/2.32.4 method: POST - uri: https://functionapp000002.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + uri: https://functionapp000002.happybay-3a5cf664.eastus2.azurecontainerapps.io/api/HttpExample response: body: string: HTTP trigger function processed a request. @@ -3752,9 +3750,9 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 09:02:34 GMT + - Thu, 13 Nov 2025 07:33:56 GMT request-context: - - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + - appId=cid-v1:48fd18ac-b4cc-4054-81e1-509139641b19 server: - Kestrel transfer-encoding: @@ -4092,7 +4090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:36 GMT + - Thu, 13 Nov 2025 07:34:57 GMT expires: - '-1' pragma: @@ -4106,7 +4104,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6AECC871579F48EDB087E84911B392F0 Ref B: PNQ231110908060 Ref C: 2025-11-12T09:03:36Z' + - 'Ref A: 92FA03F9DBBB4E0C91EADB8B4E263EE6 Ref B: SG2AA1070304025 Ref C: 2025-11-13T07:34:58Z' status: code: 200 message: OK @@ -4127,11 +4125,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4145,7 +4143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:36 GMT + - Thu, 13 Nov 2025 07:34:59 GMT expires: - '-1' pragma: @@ -4161,7 +4159,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 91865F228AC0454CBA60073664A3A77A Ref B: PNQ231110907029 Ref C: 2025-11-12T09:03:36Z' + - 'Ref A: 5C7DFD12A5764B049D353BA4686A5F5E Ref B: SG2AA1070301040 Ref C: 2025-11-13T07:34:59Z' x-powered-by: - ASP.NET status: @@ -4184,11 +4182,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4202,7 +4200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:36 GMT + - Thu, 13 Nov 2025 07:35:00 GMT expires: - '-1' pragma: @@ -4218,7 +4216,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9EC562E2BC0D41F989C19B1C071EDF7F Ref B: PNQ231110906034 Ref C: 2025-11-12T09:03:37Z' + - 'Ref A: 2732C79ABF084C2FB6AE5BE560B5252E Ref B: SG2AA1070301054 Ref C: 2025-11-13T07:35:00Z' x-powered-by: - ASP.NET status: @@ -4241,10 +4239,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t","name":"functionapp000002--477jv7t","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:33:09+00:00","fqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4254,11 +4252,11 @@ interactions: cache-control: - no-cache content-length: - - '1351' + - '1350' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:38 GMT + - Thu, 13 Nov 2025 07:35:02 GMT expires: - '-1' pragma: @@ -4272,11 +4270,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/f1de5e82-db5f-4c9c-83e4-4d3abd5bbe3c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/dd8fed69-d96d-4eef-bb91-817bf55d9f04 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 22E6F1EA88464BBCBA278428F6210478 Ref B: PNQ231110907052 Ref C: 2025-11-12T09:03:37Z' + - 'Ref A: 91154EA4EC614C5CBB175228627B95AD Ref B: SG2AA1070301062 Ref C: 2025-11-13T07:35:01Z' x-powered-by: - ASP.NET status: @@ -4285,7 +4283,7 @@ interactions: - request: body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) | where timestamp >= ago(30d) | where cloud_RoleName =~ ''functionapp000002'' - | where cloud_RoleInstance contains ''functionapp000002--qp749le'' | where operation_Name + | where cloud_RoleInstance contains ''functionapp000002--477jv7t'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)", "timespan": "P30D"}' @@ -4308,7 +4306,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getLast30DaySummary + uri: https://api.applicationinsights.io/v1/apps/48fd18ac-b4cc-4054-81e1-509139641b19/query?api-version=2018-04-20&queryType=getLast30DaySummary response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"SuccessCount","type":"long"},{"name":"ErrorCount","type":"long"}],"rows":[[0,0]]}]}' @@ -4324,13 +4322,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:45 GMT + - Thu, 13 Nov 2025 07:35:10 GMT strict-transport-security: - max-age=31536000; includeSubDomains vary: - Accept-Encoding via: - - 1.1 draft-oms-f75f4b59c-bjdjm + - 1.1 draft-oms-f75f4b59c-rxlsl x-content-type-options: - nosniff status: @@ -4666,7 +4664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:46 GMT + - Thu, 13 Nov 2025 07:35:11 GMT expires: - '-1' pragma: @@ -4680,7 +4678,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DBC7FCCAB9754151B341ACC6BF200388 Ref B: PNQ231110909040 Ref C: 2025-11-12T09:03:46Z' + - 'Ref A: 46E317F83CF64BC8807A01BA002BE595 Ref B: SG2AA1070304036 Ref C: 2025-11-13T07:35:11Z' status: code: 200 message: OK @@ -4701,11 +4699,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4719,7 +4717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:47 GMT + - Thu, 13 Nov 2025 07:35:11 GMT expires: - '-1' pragma: @@ -4735,7 +4733,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2E79BF7FBA04FD5BEF961D37F20EEE9 Ref B: PNQ231110909036 Ref C: 2025-11-12T09:03:47Z' + - 'Ref A: 4469D5B133CA428B8983E29F0C2C79CC Ref B: SG2AA1070302042 Ref C: 2025-11-13T07:35:12Z' x-powered-by: - ASP.NET status: @@ -4758,11 +4756,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4776,7 +4774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:47 GMT + - Thu, 13 Nov 2025 07:35:13 GMT expires: - '-1' pragma: @@ -4792,7 +4790,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9E3AC3DE277E4CB38D6B75442EA8EB2D Ref B: PNQ231110907029 Ref C: 2025-11-12T09:03:48Z' + - 'Ref A: 8F725B3A152D486EAFDDE88E7B9FF887 Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:35:13Z' x-powered-by: - ASP.NET status: @@ -4815,10 +4813,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t","name":"functionapp000002--477jv7t","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:33:09+00:00","fqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4828,11 +4826,11 @@ interactions: cache-control: - no-cache content-length: - - '1351' + - '1350' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:48 GMT + - Thu, 13 Nov 2025 07:35:14 GMT expires: - '-1' pragma: @@ -4846,11 +4844,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/8281c177-b4e2-4d87-bc88-76da9405fdba + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/fa27b41a-e9a4-4097-870a-f42af91856f5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5F7C988C13074E72AB9508E3B63526C4 Ref B: PNQ231110909023 Ref C: 2025-11-12T09:03:48Z' + - 'Ref A: 6636CA32DD7C45CE9A9F765CE563E638 Ref B: SG2AA1070306052 Ref C: 2025-11-13T07:35:13Z' x-powered-by: - ASP.NET status: @@ -4859,7 +4857,7 @@ interactions: - request: body: '{"query": "requests | extend functionNameFromCustomDimension = tostring(customDimensions[''faas.name'']) | where timestamp >= ago(5h) | where cloud_RoleName =~ ''functionapp000002'' - | where cloud_RoleInstance contains ''functionapp000002--qp749le'' | where operation_Name + | where cloud_RoleInstance contains ''functionapp000002--477jv7t'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | summarize SuccessCount = coalesce(countif(success == true), 0), ErrorCount = coalesce(countif(success == false), 0)", "timespan": "P30D"}' @@ -4882,7 +4880,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getLast30DaySummary + uri: https://api.applicationinsights.io/v1/apps/48fd18ac-b4cc-4054-81e1-509139641b19/query?api-version=2018-04-20&queryType=getLast30DaySummary response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"SuccessCount","type":"long"},{"name":"ErrorCount","type":"long"}],"rows":[[0,0]]}]}' @@ -4898,13 +4896,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:52 GMT + - Thu, 13 Nov 2025 07:35:17 GMT strict-transport-security: - max-age=31536000; includeSubDomains vary: - Accept-Encoding via: - - 1.1 draft-oms-f75f4b59c-gss22 + - 1.1 draft-oms-f75f4b59c-cmj92 x-content-type-options: - nosniff status: @@ -5240,7 +5238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:53 GMT + - Thu, 13 Nov 2025 07:35:18 GMT expires: - '-1' pragma: @@ -5254,7 +5252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 411D74EE0483459CAE25A8AB62AF9DB5 Ref B: PNQ231110906052 Ref C: 2025-11-12T09:03:52Z' + - 'Ref A: ACD1B2A2B02F43F48B83059AEEA1A321 Ref B: SG2AA1070305040 Ref C: 2025-11-13T07:35:18Z' status: code: 200 message: OK @@ -5275,11 +5273,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"containerapp000004--ec84vxt","latestReadyRevisionName":"containerapp000004--ec84vxt","latestRevisionFqdn":"containerapp000004--ec84vxt.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:32:43.3904451","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:32:43.3904451"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"containerapp000004--d49aekr","latestReadyRevisionName":"containerapp000004--d49aekr","latestRevisionFqdn":"containerapp000004--d49aekr.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5293,7 +5291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:53 GMT + - Thu, 13 Nov 2025 07:35:20 GMT expires: - '-1' pragma: @@ -5309,7 +5307,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 57D14086D6344BDA8DB5F6E17002493F Ref B: PNQ231110909054 Ref C: 2025-11-12T09:03:53Z' + - 'Ref A: E744FEB4F70945EC97612DD38EEACD9B Ref B: SG2AA1070301023 Ref C: 2025-11-13T07:35:19Z' x-powered-by: - ASP.NET status: @@ -5645,7 +5643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:54 GMT + - Thu, 13 Nov 2025 07:35:21 GMT expires: - '-1' pragma: @@ -5659,7 +5657,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B56D44D91BDF4A7E8106083576B0308D Ref B: PNQ231110909025 Ref C: 2025-11-12T09:03:54Z' + - 'Ref A: 3D7E911D21B844DF8CC0D97DF1F88D98 Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:35:21Z' status: code: 200 message: OK @@ -5680,7 +5678,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/non-existent-app'' @@ -5694,7 +5692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:55 GMT + - Thu, 13 Nov 2025 07:35:22 GMT expires: - '-1' pragma: @@ -5708,7 +5706,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 6E97DC74D3204C799E179AAE6FAB96B9 Ref B: PNQ231110907042 Ref C: 2025-11-12T09:03:55Z' + - 'Ref A: 034D64A8DFB54451A5769ABA6E42B1BB Ref B: SG2AA1070305052 Ref C: 2025-11-13T07:35:22Z' status: code: 404 message: Not Found @@ -6042,7 +6040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:55 GMT + - Thu, 13 Nov 2025 07:35:23 GMT expires: - '-1' pragma: @@ -6056,7 +6054,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9E863C4611E84B0EAD776350B68D8DCB Ref B: PNQ231110908040 Ref C: 2025-11-12T09:03:56Z' + - 'Ref A: D90E908DFBBA46E089163926B6B31A4B Ref B: SG2AA1070306062 Ref C: 2025-11-13T07:35:23Z' status: code: 200 message: OK @@ -6077,11 +6075,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6095,7 +6093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:56 GMT + - Thu, 13 Nov 2025 07:35:25 GMT expires: - '-1' pragma: @@ -6111,7 +6109,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BDCE3D27B42044109AE1A7D640F0EA1B Ref B: PNQ231110907062 Ref C: 2025-11-12T09:03:56Z' + - 'Ref A: 814BFE3C68374C9E8A7BA69D307A9772 Ref B: SG2AA1070305023 Ref C: 2025-11-13T07:35:24Z' x-powered-by: - ASP.NET status: @@ -6134,11 +6132,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6152,7 +6150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:57 GMT + - Thu, 13 Nov 2025 07:35:26 GMT expires: - '-1' pragma: @@ -6168,7 +6166,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 223C984C238D45FBAB4979A4B84316D4 Ref B: PNQ231110909042 Ref C: 2025-11-12T09:03:57Z' + - 'Ref A: 6D9C72798B03445381DC62D79C39CC56 Ref B: SG2AA1070305036 Ref C: 2025-11-13T07:35:26Z' x-powered-by: - ASP.NET status: @@ -6191,10 +6189,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t","name":"functionapp000002--477jv7t","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:33:09+00:00","fqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6204,11 +6202,11 @@ interactions: cache-control: - no-cache content-length: - - '1351' + - '1350' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:03:58 GMT + - Thu, 13 Nov 2025 07:35:27 GMT expires: - '-1' pragma: @@ -6222,11 +6220,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b04121ef-17a9-46b1-bb35-234a8c3f274a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d86619ff-3684-450f-9ca2-8ef92017715a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1868EF6BC7B74223A7FA9644E200D7B4 Ref B: PNQ231110906062 Ref C: 2025-11-12T09:03:58Z' + - 'Ref A: 68BE9570D88241D09B16198DE9A00EB7 Ref B: SG2AA1070306023 Ref C: 2025-11-13T07:35:27Z' x-powered-by: - ASP.NET status: @@ -6238,7 +6236,7 @@ interactions: functionNameFromCustomDimension, cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions[''InvocationId'']), tostring(customDimensions[''faas.invocation_id''])) | where timestamp > ago(30d) | where cloud_RoleName =~ ''functionapp000002'' | where cloud_RoleInstance contains - ''functionapp000002--qp749le'' | where operation_Name =~ ''HttpExample'' or + ''functionapp000002--477jv7t'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | order by timestamp desc | take 20 | project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension @@ -6262,7 +6260,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getInvocationTraces + uri: https://api.applicationinsights.io/v1/apps/48fd18ac-b4cc-4054-81e1-509139641b19/query?api-version=2018-04-20&queryType=getInvocationTraces response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"timestamp","type":"datetime"},{"name":"success","type":"string"},{"name":"resultCode","type":"string"},{"name":"durationInMilliSeconds","type":"real"},{"name":"invocationId","type":"string"},{"name":"operationId","type":"string"},{"name":"operationName","type":"string"},{"name":"functionNameFromCustomDimension","type":"string"}],"rows":[]}]}' @@ -6278,13 +6276,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:00 GMT + - Thu, 13 Nov 2025 07:35:29 GMT strict-transport-security: - max-age=31536000; includeSubDomains vary: - Accept-Encoding via: - - 1.1 draft-oms-f75f4b59c-nnp5w + - 1.1 draft-oms-f75f4b59c-pf75h x-content-type-options: - nosniff status: @@ -6620,7 +6618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:00 GMT + - Thu, 13 Nov 2025 07:35:30 GMT expires: - '-1' pragma: @@ -6634,7 +6632,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 86861743A55045F38301DC54A4E8E3BA Ref B: PNQ231110907062 Ref C: 2025-11-12T09:04:00Z' + - 'Ref A: 302C7212929B4393A85C33FCF1819158 Ref B: SG2AA1070304042 Ref C: 2025-11-13T07:35:30Z' status: code: 200 message: OK @@ -6655,11 +6653,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6673,7 +6671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:02 GMT + - Thu, 13 Nov 2025 07:35:31 GMT expires: - '-1' pragma: @@ -6689,7 +6687,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6C5464FCD5304427829EB601D479B013 Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:01Z' + - 'Ref A: F30645D34F544A97B197BF348952C2F0 Ref B: SG2AA1070304042 Ref C: 2025-11-13T07:35:31Z' x-powered-by: - ASP.NET status: @@ -6712,11 +6710,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000002","name":"functionapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:56.1715815","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:56.1715815"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000002--qp749le","latestReadyRevisionName":"functionapp000002--qp749le","latestRevisionFqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:33:03.7493029","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:33:03.7493029"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000002--477jv7t","latestReadyRevisionName":"functionapp000002--477jv7t","latestRevisionFqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000002.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6730,7 +6728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:02 GMT + - Thu, 13 Nov 2025 07:35:33 GMT expires: - '-1' pragma: @@ -6746,7 +6744,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9D495E73C44B45C8B9E9F1E92B81D246 Ref B: PNQ231110906029 Ref C: 2025-11-12T09:04:02Z' + - 'Ref A: 94E3FC0B34614E70A4C91E6331D0F6C3 Ref B: SG2AA1070303040 Ref C: 2025-11-13T07:35:33Z' x-powered-by: - ASP.NET status: @@ -6769,10 +6767,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--qp749le","name":"functionapp000002--qp749le","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T09:02:01+00:00","fqdn":"functionapp000002--qp749le.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=daf3cb3b-461a-48c7-b6a3-a360ec907ea8;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=08b5c44d-d8bc-47b7-8427-987921b829d6"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000002/revisions/functionapp000002--477jv7t","name":"functionapp000002--477jv7t","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:33:09+00:00","fqdn":"functionapp000002--477jv7t.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000002","env":[{"name":"APPLICATIONINSIGHTS_CONNECTION_STRING","value":"InstrumentationKey=0eeef120-d49c-43b8-a4e9-0872758ac768;IngestionEndpoint=https://eastus2-3.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus2.livediagnostics.monitor.azure.com/;ApplicationId=48fd18ac-b4cc-4054-81e1-509139641b19"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6782,11 +6780,11 @@ interactions: cache-control: - no-cache content-length: - - '1351' + - '1350' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:03 GMT + - Thu, 13 Nov 2025 07:35:34 GMT expires: - '-1' pragma: @@ -6800,11 +6798,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/75dc028c-10a5-4271-bd1f-4c1baddb78a9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/48e6cdff-ba42-44d5-9711-0b4c1971d915 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0CBFC78DB23742699F160B2D8D02B4D8 Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:02Z' + - 'Ref A: 0419ADB98D634527B1145035B876A7B9 Ref B: SG2AA1070303029 Ref C: 2025-11-13T07:35:34Z' x-powered-by: - ASP.NET status: @@ -6816,7 +6814,7 @@ interactions: functionNameFromCustomDimension, cloud_RoleName, cloud_RoleInstance, invocationId=coalesce(tostring(customDimensions[''InvocationId'']), tostring(customDimensions[''faas.invocation_id''])) | where timestamp > ago(5h) | where cloud_RoleName =~ ''functionapp000002'' | where cloud_RoleInstance contains - ''functionapp000002--qp749le'' | where operation_Name =~ ''HttpExample'' or + ''functionapp000002--477jv7t'' | where operation_Name =~ ''HttpExample'' or functionNameFromCustomDimension =~ ''HttpExample'' | order by timestamp desc | take 3 | project timestamp, success, resultCode, durationInMilliSeconds=duration, invocationId, operationId=operation_Id, operationName=operation_Name, functionNameFromCustomDimension @@ -6840,7 +6838,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://api.applicationinsights.io/v1/apps/08b5c44d-d8bc-47b7-8427-987921b829d6/query?api-version=2018-04-20&queryType=getInvocationTraces + uri: https://api.applicationinsights.io/v1/apps/48fd18ac-b4cc-4054-81e1-509139641b19/query?api-version=2018-04-20&queryType=getInvocationTraces response: body: string: '{"tables":[{"name":"PrimaryResult","columns":[{"name":"timestamp","type":"datetime"},{"name":"success","type":"string"},{"name":"resultCode","type":"string"},{"name":"durationInMilliSeconds","type":"real"},{"name":"invocationId","type":"string"},{"name":"operationId","type":"string"},{"name":"operationName","type":"string"},{"name":"functionNameFromCustomDimension","type":"string"}],"rows":[]}]}' @@ -6856,13 +6854,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:05 GMT + - Thu, 13 Nov 2025 07:35:36 GMT strict-transport-security: - max-age=31536000; includeSubDomains vary: - Accept-Encoding via: - - 1.1 draft-oms-f75f4b59c-sq4w6 + - 1.1 draft-oms-f75f4b59c-29hp2 x-content-type-options: - nosniff status: @@ -7198,7 +7196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:06 GMT + - Thu, 13 Nov 2025 07:35:38 GMT expires: - '-1' pragma: @@ -7212,7 +7210,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6A7FC6F3420542D5BC75CE2DC3E1857B Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:05Z' + - 'Ref A: EAD0CAAFC6414336A267E2603CD72CAD Ref B: SG2AA1070304029 Ref C: 2025-11-13T07:35:38Z' status: code: 200 message: OK @@ -7233,11 +7231,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000004?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000004","name":"containerapp000004","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T09:01:35.1966208","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T09:01:35.1966208"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"containerapp000004--ec84vxt","latestReadyRevisionName":"containerapp000004--ec84vxt","latestRevisionFqdn":"containerapp000004--ec84vxt.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:32:43.3904451","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:32:43.3904451"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"containerapp000004--d49aekr","latestReadyRevisionName":"containerapp000004--d49aekr","latestRevisionFqdn":"containerapp000004--d49aekr.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000004.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000004/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7251,7 +7249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:05 GMT + - Thu, 13 Nov 2025 07:35:39 GMT expires: - '-1' pragma: @@ -7267,7 +7265,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 37D35F0D292A489983AC1E73B8E650C7 Ref B: PNQ231110907029 Ref C: 2025-11-12T09:04:06Z' + - 'Ref A: CBC5A965B3C14B3F807E5EBF495C4994 Ref B: SG2AA1070301062 Ref C: 2025-11-13T07:35:39Z' x-powered-by: - ASP.NET status: @@ -7603,7 +7601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:07 GMT + - Thu, 13 Nov 2025 07:35:41 GMT expires: - '-1' pragma: @@ -7617,7 +7615,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A4162B09A85440BE931594CADE52B0F4 Ref B: PNQ231110909042 Ref C: 2025-11-12T09:04:07Z' + - 'Ref A: 6C70A53C400D4746A260FC70EA9B3B60 Ref B: SG2AA1070303034 Ref C: 2025-11-13T07:35:40Z' status: code: 200 message: OK @@ -7638,7 +7636,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/non-existent-app?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/non-existent-app'' @@ -7652,7 +7650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 09:04:08 GMT + - Thu, 13 Nov 2025 07:35:41 GMT expires: - '-1' pragma: @@ -7666,7 +7664,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 34C852A04BCA4FDEB5BC3A89405D41CA Ref B: PNQ231110908036 Ref C: 2025-11-12T09:04:08Z' + - 'Ref A: 599D1A7257FE4CCF8D06F9BE546EC61F Ref B: SG2AA1070306034 Ref C: 2025-11-13T07:35:42Z' status: code: 404 message: Not Found diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml index bedfeec189c..ce7036a2095 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml @@ -31,7 +31,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Nov 2025 07:41:24 GMT + - Thu, 13 Nov 2025 07:37:44 GMT expires: - '-1' pragma: @@ -43,11 +43,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/076f473b-dce6-4ac0-9422-7c41e98742b5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/006912fb-508d-4d39-ae6b-d6e19f289f94 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A551CBCDDFE945D385B83CF7C6DDEACE Ref B: PNQ231110909042 Ref C: 2025-11-12T07:41:24Z' + - 'Ref A: 3788843800984C5E81D19A9A96456BF0 Ref B: SG2AA1070306040 Ref C: 2025-11-13T07:37:44Z' status: code: 200 message: OK @@ -84,11 +84,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 07:41:32 GMT + - Thu, 13 Nov 2025 07:37:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300928824327&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=EfTFLBrV2qSj66nlg4aVe9r3bNSchPvX_w1JqFIcXulCFVOL-gQyXFaDssih40UsAqaeheszC2FQvdXQpuLRElTBngYfGB9TgetG3botjAatsbeFC4JmDwHxmvyLuWa6ftjr0gSoOgSESFiqAng865bFfdQy6vpjiFsutE2GNdX3OWFsmUmxJDXD3tjOy6KLq_18qY36AKClMPAi8mSmpHLaYMsz3U7B6DAaytnomueCGB4w2syf5y0veTSeot7zueuGbcc9UyKDtc9erIIoOH-v_5DvxPKC6AHEp4psShfEL7G5D7Z4JCmnI16an3Zw8kxjR3UNl0ZIZqDjgHm8-Q&h=F7rom3VKnHrjtbH-HANstv8dtA4ITppB-3g5rHoyqP0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/18cc1597-ce47-4b51-ba6f-f04906221ba3?monitor=true&api-version=2025-06-01&t=638986162777232932&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=UPf5VYfg6Rwcxbaq1aLfjBvjFmBhsy5tkDwShKwVBrXhe6K2uTf6dF0nsIo3gmTH3cSStIPDLTF31FasVPI83AkAfwLIu-ZPACrY5Ld94AA6l10S2NKXbAYPAhvHtDkhsglX53ExXiCHQvGBZRjdDSAN2cVJMDL4JNhOWrVqss-LJzFupU2klNnwuQxzjfv5kYEs1wpbj_YCtkfLHywdLBqxgbC1n2Olh-m7xPPZm4oWQA1Ah96oZOAuEYQ7XY8pR1-Bus-rvhUF_408Tm95rTv_0babVF9re1zRMemLiCy4KBcFFTQ52gB6Hc2V74nNwfhrZy28KLYaVKJqFe5mCA&h=S-3FscK-j3VBlbmsijlh-v6ZC6X-OB45xteuMY-5Mdw pragma: - no-cache strict-transport-security: @@ -98,13 +98,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/aba18c83-6a41-4421-b5d8-3147171d3663 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/5191dab3-6d10-4398-8c73-ae9884805391 x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' + - '12000' x-ms-ratelimit-remaining-subscription-writes: - - '799' + - '800' x-msedge-ref: - - 'Ref A: C69AC8D355EE43CC915B607F045494F0 Ref B: PNQ231110906042 Ref C: 2025-11-12T07:41:25Z' + - 'Ref A: 22C9F933D4EA4AB7A2576BA56BCACFBC Ref B: SG2AA1070306036 Ref C: 2025-11-13T07:37:45Z' status: code: 202 message: Accepted @@ -124,7 +124,7 @@ interactions: User-Agent: - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300928824327&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=EfTFLBrV2qSj66nlg4aVe9r3bNSchPvX_w1JqFIcXulCFVOL-gQyXFaDssih40UsAqaeheszC2FQvdXQpuLRElTBngYfGB9TgetG3botjAatsbeFC4JmDwHxmvyLuWa6ftjr0gSoOgSESFiqAng865bFfdQy6vpjiFsutE2GNdX3OWFsmUmxJDXD3tjOy6KLq_18qY36AKClMPAi8mSmpHLaYMsz3U7B6DAaytnomueCGB4w2syf5y0veTSeot7zueuGbcc9UyKDtc9erIIoOH-v_5DvxPKC6AHEp4psShfEL7G5D7Z4JCmnI16an3Zw8kxjR3UNl0ZIZqDjgHm8-Q&h=F7rom3VKnHrjtbH-HANstv8dtA4ITppB-3g5rHoyqP0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/18cc1597-ce47-4b51-ba6f-f04906221ba3?monitor=true&api-version=2025-06-01&t=638986162777232932&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=UPf5VYfg6Rwcxbaq1aLfjBvjFmBhsy5tkDwShKwVBrXhe6K2uTf6dF0nsIo3gmTH3cSStIPDLTF31FasVPI83AkAfwLIu-ZPACrY5Ld94AA6l10S2NKXbAYPAhvHtDkhsglX53ExXiCHQvGBZRjdDSAN2cVJMDL4JNhOWrVqss-LJzFupU2klNnwuQxzjfv5kYEs1wpbj_YCtkfLHywdLBqxgbC1n2Olh-m7xPPZm4oWQA1Ah96oZOAuEYQ7XY8pR1-Bus-rvhUF_408Tm95rTv_0babVF9re1zRMemLiCy4KBcFFTQ52gB6Hc2V74nNwfhrZy28KLYaVKJqFe5mCA&h=S-3FscK-j3VBlbmsijlh-v6ZC6X-OB45xteuMY-5Mdw response: body: string: '' @@ -136,11 +136,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 12 Nov 2025 07:41:32 GMT + - Thu, 13 Nov 2025 07:37:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300933610075&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=z1lHQi_mZ3hYe36yTIkQqb6x-KWFT5jcFDS_mHjO2R0ciC6BEO7Zb0UkLaiAJdk7wcJHsFG_eChTRDpi1eddgLddVPS_L1kI061mKLzqocfYgDMXkxGmz4T9tRDPDgJgpPdj6U3ITgYt8wdvzCGO0VBhV5mKQColnnjff5_-9Espmmr_FcTZOaRFWOvLS6K87OdmEoitgGg0KqPzSbJoUayKjaXODU5eGtSLbhfYlDd98-WFtq8Apecoe6l1ujJDPFSMCep3L3IuWg1Vz41mbfpA5dxClDsUGpCo-aY6fXgnOZtKKQedWP1lyCDAI_ctpMBHolb7-oFW00i-J4yT2Q&h=bU28qkIF577smhVjPwlOuhy7pJfsdGogN2-DlRp54sM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/18cc1597-ce47-4b51-ba6f-f04906221ba3?monitor=true&api-version=2025-06-01&t=638986162787893264&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=Qt2igntWfh12XbrfPmm350gRv5_RcLyvel-bZQOmZ2vH4GArRNlYjtVr0MX7AAA5UucUfarpQyVXPAqVXAvHGrvAob_ehCFwIUb6ycWsyoE93nSqwRPGsKHi9oHKsq2KBiyzxHNBWygGHacRlcDsgAorR3umi2eGYYjaF2zGVXHWCtXCQmPKCkvu1Ev7afdcU6gxAFhUs2lAVJVGyQgdf4rQC-DJ5X7EbjWXLY8Mp7m1gOwhqEYHFoUwb1GjwLk-1ipDsydQueANaxbESjL6SYKtpJwOIP6ZfrBrnoL8oqKOPR7hDeidUXXB2qnuzikrxGjMvbNbMnKRzo6Q5-BrPA&h=2kBom-DojLc8fkUbjVV5pF73HPD-kFPA4yXdHJHSG1E pragma: - no-cache strict-transport-security: @@ -150,11 +150,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/444998ac-2a7b-4879-bb8c-931ddfee59ba + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/a266be06-d3c1-4f2c-803b-97a2acaa0309 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 736D13D05A3041298757D6E18E61F7E9 Ref B: PNQ231110909054 Ref C: 2025-11-12T07:41:33Z' + - 'Ref A: 00C21B118FAF46B08B0FF86BDEF1F5EF Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:37:58Z' status: code: 202 message: Accepted @@ -174,10 +174,10 @@ interactions: User-Agent: - AZURECLI/2.80.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fb9b08e8-6747-463e-91a2-6762f1daae8b?monitor=true&api-version=2025-06-01&t=638985300933610075&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=z1lHQi_mZ3hYe36yTIkQqb6x-KWFT5jcFDS_mHjO2R0ciC6BEO7Zb0UkLaiAJdk7wcJHsFG_eChTRDpi1eddgLddVPS_L1kI061mKLzqocfYgDMXkxGmz4T9tRDPDgJgpPdj6U3ITgYt8wdvzCGO0VBhV5mKQColnnjff5_-9Espmmr_FcTZOaRFWOvLS6K87OdmEoitgGg0KqPzSbJoUayKjaXODU5eGtSLbhfYlDd98-WFtq8Apecoe6l1ujJDPFSMCep3L3IuWg1Vz41mbfpA5dxClDsUGpCo-aY6fXgnOZtKKQedWP1lyCDAI_ctpMBHolb7-oFW00i-J4yT2Q&h=bU28qkIF577smhVjPwlOuhy7pJfsdGogN2-DlRp54sM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/18cc1597-ce47-4b51-ba6f-f04906221ba3?monitor=true&api-version=2025-06-01&t=638986162787893264&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=Qt2igntWfh12XbrfPmm350gRv5_RcLyvel-bZQOmZ2vH4GArRNlYjtVr0MX7AAA5UucUfarpQyVXPAqVXAvHGrvAob_ehCFwIUb6ycWsyoE93nSqwRPGsKHi9oHKsq2KBiyzxHNBWygGHacRlcDsgAorR3umi2eGYYjaF2zGVXHWCtXCQmPKCkvu1Ev7afdcU6gxAFhUs2lAVJVGyQgdf4rQC-DJ5X7EbjWXLY8Mp7m1gOwhqEYHFoUwb1GjwLk-1ipDsydQueANaxbESjL6SYKtpJwOIP6ZfrBrnoL8oqKOPR7hDeidUXXB2qnuzikrxGjMvbNbMnKRzo6Q5-BrPA&h=2kBom-DojLc8fkUbjVV5pF73HPD-kFPA4yXdHJHSG1E response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2025-11-12T07:41:31.1240055Z","key2":"2025-11-12T07:41:31.1240055Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-11-12T07:41:30.7490040Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z20.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2025-11-13T07:37:49.7696632Z","key2":"2025-11-13T07:37:49.7696632Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-13T07:37:49.7854324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-13T07:37:49.7854324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-11-13T07:37:49.3634150Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z20.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Nov 2025 07:41:50 GMT + - Thu, 13 Nov 2025 07:38:16 GMT expires: - '-1' pragma: @@ -198,11 +198,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1069bed6-8a5a-4bef-b963-e9908a47f335 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/3d59cfd0-2f7f-454d-8f3d-0517d6764fe8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 921A622660364861BEE22F201AB3689A Ref B: PNQ231110906052 Ref C: 2025-11-12T07:41:50Z' + - 'Ref A: 4ED61950FBE74C02AFD88DA4DE5EFCE8 Ref B: SG2AA1070301031 Ref C: 2025-11-13T07:38:16Z' status: code: 200 message: OK @@ -227,7 +227,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002/listKeys?api-version=2025-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2025-11-12T07:41:31.1240055Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-11-12T07:41:31.1240055Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2025-11-13T07:37:49.7696632Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-11-13T07:37:49.7696632Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Nov 2025 07:42:11 GMT + - Thu, 13 Nov 2025 07:38:37 GMT expires: - '-1' pragma: @@ -248,11 +248,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/aab94722-57cf-46fb-a019-dffc9306ea97 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/0e634354-f5f0-49cb-bf6d-3861963082dc x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: A1CBEF20790B4B228C954D6CB3520775 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:42:11Z' + - 'Ref A: A4E75734F27C48D9918CFCCF355A7542 Ref B: SG2AA1070303034 Ref C: 2025-11-13T07:38:37Z' status: code: 200 message: OK @@ -275,7 +275,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002?api-version=2025-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2025-11-12T07:41:31.1240055Z","key2":"2025-11-12T07:41:31.1240055Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-12T07:41:31.1240055Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-11-12T07:41:30.7490040Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z20.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storageacc000002","name":"storageacc000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2025-11-13T07:37:49.7696632Z","key2":"2025-11-13T07:37:49.7696632Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-13T07:37:49.7854324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-11-13T07:37:49.7854324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2025-11-13T07:37:49.3634150Z","primaryEndpoints":{"dfs":"https://storageacc000002.dfs.core.windows.net/","web":"https://storageacc000002.z20.web.core.windows.net/","blob":"https://storageacc000002.blob.core.windows.net/","queue":"https://storageacc000002.queue.core.windows.net/","table":"https://storageacc000002.table.core.windows.net/","file":"https://storageacc000002.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -284,7 +284,7 @@ interactions: content-type: - application/json date: - - Wed, 12 Nov 2025 07:42:11 GMT + - Thu, 13 Nov 2025 07:38:38 GMT expires: - '-1' pragma: @@ -298,7 +298,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B9F47ED3C80145E69DA2B2580AF70334 Ref B: PNQ231110907052 Ref C: 2025-11-12T07:42:12Z' + - 'Ref A: 9F53CF7CAD0644B88110B922324DA6D9 Ref B: SG2AA1070306029 Ref C: 2025-11-13T07:38:38Z' status: code: 200 message: OK @@ -632,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:42:13 GMT + - Thu, 13 Nov 2025 07:38:40 GMT expires: - '-1' pragma: @@ -646,7 +646,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5830C12EEE3C437B9F7C9CB56B58D40E Ref B: PNQ231110908031 Ref C: 2025-11-12T07:42:14Z' + - 'Ref A: 617A11525A9A4F0CBC45B4B5F4CCA0BA Ref B: SG2AA1070306034 Ref C: 2025-11-13T07:38:41Z' status: code: 200 message: OK @@ -667,11 +667,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:19:42.0148519","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:19:42.0148519"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happybay-3a5cf664.eastus2.azurecontainerapps.io","staticIp":"20.15.83.230","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -681,11 +681,11 @@ interactions: cache-control: - no-cache content-length: - - '1732' + - '1729' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:42:14 GMT + - Thu, 13 Nov 2025 07:38:41 GMT expires: - '-1' pragma: @@ -701,7 +701,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EE0EF94C86D94D11B921AA25D8981BF8 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:42:14Z' + - 'Ref A: 0592FF5FE86B4B9B8E1B208655414984 Ref B: SG2AA1070302029 Ref C: 2025-11-13T07:38:42Z' x-powered-by: - ASP.NET status: @@ -1037,7 +1037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:43:56 GMT + - Thu, 13 Nov 2025 07:40:23 GMT expires: - '-1' pragma: @@ -1051,7 +1051,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8979F0EA1DE94E6D9BCBB9F35AE62C6E Ref B: PNQ231110909029 Ref C: 2025-11-12T07:43:56Z' + - 'Ref A: 90472B6C19234E929983EA7A36FF73FB Ref B: SG2AA1070302036 Ref C: 2025-11-13T07:40:23Z' status: code: 200 message: OK @@ -1072,11 +1072,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","name":"env-v1-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:18:53.9766199","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:18:53.9766199"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"jollybush-95ea47da.eastus2.azurecontainerapps.io","staticIp":"172.193.125.54","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:19:42.0148519","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:19:42.0148519"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happybay-3a5cf664.eastus2.azurecontainerapps.io","staticIp":"20.15.83.230","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/managedEnvironments/env-v1-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1086,11 +1086,11 @@ interactions: cache-control: - no-cache content-length: - - '1732' + - '1729' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:43:57 GMT + - Thu, 13 Nov 2025 07:40:24 GMT expires: - '-1' pragma: @@ -1106,7 +1106,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 521788EEF98B4A96A99FDE9BC56DC469 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:43:57Z' + - 'Ref A: D06BA794B90846A1B8F1BE85436B6822 Ref B: SG2AA1070305042 Ref C: 2025-11-13T07:40:24Z' x-powered-by: - ASP.NET status: @@ -1442,7 +1442,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:43:57 GMT + - Thu, 13 Nov 2025 07:40:25 GMT expires: - '-1' pragma: @@ -1456,7 +1456,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F5E489A98DF44CB683B74CCD17EEF741 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:43:58Z' + - 'Ref A: DEA8E9DF06B84DEF98DFED5092A147FB Ref B: SG2AA1070301042 Ref C: 2025-11-13T07:40:25Z' status: code: 200 message: OK @@ -1493,11 +1493,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}]}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1505,15 +1505,15 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986164300905647&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JaMOI9zysuPq5M22vNp79Pv7fBnNBgwXAWmz38gxMC8LUOGp1Bu59Stt6W-SPoFYtdeoWSmqyAYlQOdNgu1GOMkjZBZMME5b3XUSkj4j2LfqCe7MEJJzy5DWKhrqDTaEMsSTjtvdgyXpr7IFeYd5pbZx99QxTFQYe5mwqeXnmMMFsh2PCDbCxcn6S0aHgbVYfcPjC4EbXWi2wlWlQcX3dyHKVbCAkFOEQVHrC_5lKtOocEQi62P0T8wzFEs4qxZM9Xog46Q0T3kqSbQs6FkMvCFKPF2DGFVdwL2Vf4MGZ7_2zlZEjoN9KSJT4xHtEdfPhKbmu40vbprTCE0V6bS3Ag&h=esNHSeLTOCMIIZet7aBHBBWGqMHsKiwLLOAtgxWupM8 cache-control: - no-cache content-length: - - '2363' + - '2365' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:03 GMT + - Thu, 13 Nov 2025 07:40:29 GMT expires: - '-1' pragma: @@ -1527,11 +1527,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/f4c0c584-d7a0-4aef-8ce4-3f81b8bb84ba + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/7055f6cc-6aad-454f-8602-ff0cb722e025 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: 5004A9E44F3E4048B935063A69376537 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:43:58Z' + - 'Ref A: 01426386A4DA433C81E8D29AB5FF2424 Ref B: SG2AA1070303029 Ref C: 2025-11-13T07:40:26Z' x-powered-by: - ASP.NET status: @@ -1554,10 +1554,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986164300905647&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JaMOI9zysuPq5M22vNp79Pv7fBnNBgwXAWmz38gxMC8LUOGp1Bu59Stt6W-SPoFYtdeoWSmqyAYlQOdNgu1GOMkjZBZMME5b3XUSkj4j2LfqCe7MEJJzy5DWKhrqDTaEMsSTjtvdgyXpr7IFeYd5pbZx99QxTFQYe5mwqeXnmMMFsh2PCDbCxcn6S0aHgbVYfcPjC4EbXWi2wlWlQcX3dyHKVbCAkFOEQVHrC_5lKtOocEQi62P0T8wzFEs4qxZM9Xog46Q0T3kqSbQs6FkMvCFKPF2DGFVdwL2Vf4MGZ7_2zlZEjoN9KSJT4xHtEdfPhKbmu40vbprTCE0V6bS3Ag&h=esNHSeLTOCMIIZet7aBHBBWGqMHsKiwLLOAtgxWupM8 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07","name":"d9ae9611-72f9-45ed-9e45-805976fb0a07","status":"InProgress","startTime":"2025-11-13T07:40:29.6963544"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1571,7 +1571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:03 GMT + - Thu, 13 Nov 2025 07:40:31 GMT expires: - '-1' pragma: @@ -1585,11 +1585,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/950a928b-fcad-41e2-9d01-a0a4ca592032 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/760f412b-7489-47fc-8c13-9cf51cff8688 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 28C85E1619B34316B35655EE21CB83FE Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:03Z' + - 'Ref A: F05055B17FAD45F68FA930A566281877 Ref B: SG2AA1070302025 Ref C: 2025-11-13T07:40:30Z' x-powered-by: - ASP.NET status: @@ -1612,10 +1612,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986164300905647&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JaMOI9zysuPq5M22vNp79Pv7fBnNBgwXAWmz38gxMC8LUOGp1Bu59Stt6W-SPoFYtdeoWSmqyAYlQOdNgu1GOMkjZBZMME5b3XUSkj4j2LfqCe7MEJJzy5DWKhrqDTaEMsSTjtvdgyXpr7IFeYd5pbZx99QxTFQYe5mwqeXnmMMFsh2PCDbCxcn6S0aHgbVYfcPjC4EbXWi2wlWlQcX3dyHKVbCAkFOEQVHrC_5lKtOocEQi62P0T8wzFEs4qxZM9Xog46Q0T3kqSbQs6FkMvCFKPF2DGFVdwL2Vf4MGZ7_2zlZEjoN9KSJT4xHtEdfPhKbmu40vbprTCE0V6bS3Ag&h=esNHSeLTOCMIIZet7aBHBBWGqMHsKiwLLOAtgxWupM8 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07","name":"d9ae9611-72f9-45ed-9e45-805976fb0a07","status":"InProgress","startTime":"2025-11-13T07:40:29.6963544"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1629,7 +1629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:06 GMT + - Thu, 13 Nov 2025 07:40:33 GMT expires: - '-1' pragma: @@ -1643,11 +1643,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/18070646-02f2-4ae8-a7bf-fc44de5a676c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/2a204cfb-60ce-4214-a400-2389f0e9e7c6 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E19EEBDE857746178AA84B14BE690810 Ref B: PNQ231110906054 Ref C: 2025-11-12T07:44:06Z' + - 'Ref A: B6F6AA3BFD2F431CA9F407DBE3DA8306 Ref B: SG2AA1070304023 Ref C: 2025-11-13T07:40:33Z' x-powered-by: - ASP.NET status: @@ -1670,10 +1670,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986164300905647&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JaMOI9zysuPq5M22vNp79Pv7fBnNBgwXAWmz38gxMC8LUOGp1Bu59Stt6W-SPoFYtdeoWSmqyAYlQOdNgu1GOMkjZBZMME5b3XUSkj4j2LfqCe7MEJJzy5DWKhrqDTaEMsSTjtvdgyXpr7IFeYd5pbZx99QxTFQYe5mwqeXnmMMFsh2PCDbCxcn6S0aHgbVYfcPjC4EbXWi2wlWlQcX3dyHKVbCAkFOEQVHrC_5lKtOocEQi62P0T8wzFEs4qxZM9Xog46Q0T3kqSbQs6FkMvCFKPF2DGFVdwL2Vf4MGZ7_2zlZEjoN9KSJT4xHtEdfPhKbmu40vbprTCE0V6bS3Ag&h=esNHSeLTOCMIIZet7aBHBBWGqMHsKiwLLOAtgxWupM8 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07","name":"d9ae9611-72f9-45ed-9e45-805976fb0a07","status":"InProgress","startTime":"2025-11-13T07:40:29.6963544"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1687,7 +1687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:09 GMT + - Thu, 13 Nov 2025 07:40:37 GMT expires: - '-1' pragma: @@ -1701,11 +1701,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/def93e66-a2d2-41aa-90ba-1710835f0f4f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d6103623-97c5-49d0-a6cf-1c4a55359f9b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2ED6B90F8014C8BA99B7E9C97DF76B8 Ref B: PNQ231110907054 Ref C: 2025-11-12T07:44:09Z' + - 'Ref A: 641CCB3996604E748DCA0ADC09254FBC Ref B: SG2AA1070306036 Ref C: 2025-11-13T07:40:37Z' x-powered-by: - ASP.NET status: @@ -1728,10 +1728,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986164300905647&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JaMOI9zysuPq5M22vNp79Pv7fBnNBgwXAWmz38gxMC8LUOGp1Bu59Stt6W-SPoFYtdeoWSmqyAYlQOdNgu1GOMkjZBZMME5b3XUSkj4j2LfqCe7MEJJzy5DWKhrqDTaEMsSTjtvdgyXpr7IFeYd5pbZx99QxTFQYe5mwqeXnmMMFsh2PCDbCxcn6S0aHgbVYfcPjC4EbXWi2wlWlQcX3dyHKVbCAkFOEQVHrC_5lKtOocEQi62P0T8wzFEs4qxZM9Xog46Q0T3kqSbQs6FkMvCFKPF2DGFVdwL2Vf4MGZ7_2zlZEjoN9KSJT4xHtEdfPhKbmu40vbprTCE0V6bS3Ag&h=esNHSeLTOCMIIZet7aBHBBWGqMHsKiwLLOAtgxWupM8 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"InProgress","startTime":"2025-11-12T07:44:03.1804073"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07","name":"d9ae9611-72f9-45ed-9e45-805976fb0a07","status":"InProgress","startTime":"2025-11-13T07:40:29.6963544"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1745,7 +1745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:11 GMT + - Thu, 13 Nov 2025 07:40:40 GMT expires: - '-1' pragma: @@ -1759,11 +1759,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/b64387ad-a3dd-4e87-858c-6ce6d648730f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/743249d3-f7ca-482c-955b-9551db860a85 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B91B2C9F459348C7BE81FBEF4A50C6EE Ref B: PNQ231110907062 Ref C: 2025-11-12T07:44:12Z' + - 'Ref A: BC8CA77353F74EC084CA333CDA3AA40D Ref B: SG2AA1070304029 Ref C: 2025-11-13T07:40:40Z' x-powered-by: - ASP.NET status: @@ -1786,10 +1786,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985302435717058&c=MIIIrzCCBpegAwIBAgITUQE8hit6gFkSBiE8_QABATyGKzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIwMDQ1MTQ0WhcNMjYwNDE4MDQ1MTQ0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALgnlvB9yp5ZOZAUBjez3HW4KlgKbgth4EIeVQchSTSur2WY8GeAIp1CJYZSy0Q4JefNX6UGk2fdwv9FNE9j5SfnLdqGKMnw4OvfW-3OVIqe2FnFxv7IXm8U-BmUxsZSgPLSejDaHWnc3lYA-pcD8kCleqRYoXQlRLmbQwr6Ou37vkGOI2N8OxYzDsrqLFcDbAV7oJ7Ew8l787y76fqlC4TpR5ZGZKkRtJgEUR2TipzfIV7ysgsHg6_6jHmLkG9nLFzjZnhMma2ZCkcaZt8DC-fZNgnFcHDlp8V7UScNb6zxv8fKLhUE1HH-CsZiuhezCaXUixkUJP2d7qe5D3l4vKkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUoI4dPmhagIBjj20-xHPpadyQfl0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQDNdxnUCy5diB961JgMgIksVkpbleanJPIt-nvUHBeixldXiZaLO8Q9MEnTTIin5TEUs0t4zGes726tHWCdkUSqfpojvcH1uby2lH66kyZ4EsejY0A8aaWarBtnUOVgoYtheA2csT7T7zTa7WHXeoJSGHxjhqhBf6hvqYLpes3mxGtG80DOC0EPkEWrHRYnpXBQ53VSTP6Oy_ZDbayW-ht4-4sc20Xc6e5TZqO9mI4G1fF3nxpAfMlndPwWC37GdLO7r_aEoRnuBP5XMMXpAdsdLQZ58T2GS2k-1Ujiq_oq-_g86kDjTiE6ZZRbmX3wNLZSqYxFV1wz_fMh3z9m5yCXvC15tq2qs4TrTDwY45cJ4UcdP1iLDvjADsEQu72kzMLNZCXJdC1StXBsheTx1XRfGrrMRyRxd5OFnfhC6Z5S_rjmIVb_ZE8WGYHOBfuEffL38rSG7zzJshSvPLfc7kcK6aCzq3n9ZdhTP_dxnHpa2sQE1xqhGn4I23v2ZlwlxKReUzFEp-2dG87WlpKNXkcKYiL1k-y3OfSLagvX0jZncNldhN5GA-e3BgjHjsCDMDBKIhIEF0pTphorTNJVO03aRbzs2iWKVopBfmO1r9gLTL4oU6TcYRm-yYf1YaLz8zFljFNsB7Dx5L-lYpvXjGid65fWgWu2VVFB6TMgUhba1Q&s=YXAZfYafWO0ARqbIdVt1jk0pJcfeDV2KRGnHPUNE4S-1HDMjqFVBRWEaDSTONrNtNVt54hOaOMOXwXu-Jf1S9NjjLK7CwzEaiZ8P8Hng1D2GQ4Aw1jGkqHd10oTjYScI16fL7I5rXQagxy8Ty3AKYAHFuGg0hndMdEOX4U8fKKLy6rpW5kvQ_fvyO36arR7WiS4bfaNpE2kT82-OE-Tmr7E-honCwowkvKiw3BvSj3wVR73Gd4u2nQ0I-3mwZBd465JKrUV0z-7iu41yBdYBMtA7XLCOPBrD0HcH0x9ix0cX7PHf8L-4_DPKuV2UA084QTuXgSvVl-ThlsdQJv-Qig&h=Xzp10cRoQL1gjq5UKedJYOMZAqEQRSdJltpMPUStdoA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986164300905647&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JaMOI9zysuPq5M22vNp79Pv7fBnNBgwXAWmz38gxMC8LUOGp1Bu59Stt6W-SPoFYtdeoWSmqyAYlQOdNgu1GOMkjZBZMME5b3XUSkj4j2LfqCe7MEJJzy5DWKhrqDTaEMsSTjtvdgyXpr7IFeYd5pbZx99QxTFQYe5mwqeXnmMMFsh2PCDbCxcn6S0aHgbVYfcPjC4EbXWi2wlWlQcX3dyHKVbCAkFOEQVHrC_5lKtOocEQi62P0T8wzFEs4qxZM9Xog46Q0T3kqSbQs6FkMvCFKPF2DGFVdwL2Vf4MGZ7_2zlZEjoN9KSJT4xHtEdfPhKbmu40vbprTCE0V6bS3Ag&h=esNHSeLTOCMIIZet7aBHBBWGqMHsKiwLLOAtgxWupM8 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/0ad1880b-dae7-48e7-ad08-70cb5ce9f652","name":"0ad1880b-dae7-48e7-ad08-70cb5ce9f652","status":"Succeeded","startTime":"2025-11-12T07:44:03.1804073"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9ae9611-72f9-45ed-9e45-805976fb0a07","name":"d9ae9611-72f9-45ed-9e45-805976fb0a07","status":"Succeeded","startTime":"2025-11-13T07:40:29.6963544"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1803,7 +1803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:14 GMT + - Thu, 13 Nov 2025 07:40:44 GMT expires: - '-1' pragma: @@ -1817,11 +1817,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/f0aec46d-a694-4a89-bf98-7a978475f33b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/03447cfa-690d-408e-ae5e-7de700a64ae4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F700726B096F4C689DB9FB259B069F7A Ref B: PNQ231110906025 Ref C: 2025-11-12T07:44:15Z' + - 'Ref A: 8BA6B36FDBBD498AA7AD2FEE40358669 Ref B: SG2AA1070306062 Ref C: 2025-11-13T07:40:43Z' x-powered-by: - ASP.NET status: @@ -1844,11 +1844,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1862,63 +1862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: C78D512869934C8085B7D8ECC175F6A6 Ref B: PNQ231110908036 Ref C: 2025-11-12T07:44:15Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp revision list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.80.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6","name":"functionapp000003--1hxsyb6","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T07:44:09+00:00","fqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating"}}]}' - headers: - api-supported-versions: - - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '1383' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Nov 2025 07:44:18 GMT + - Thu, 13 Nov 2025 07:40:44 GMT expires: - '-1' pragma: @@ -1931,12 +1875,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/7c8a54d8-f39b-4c67-9c74-4b48f0cb7257 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 681FF1F6C016400D9F64DDEC50C174FD Ref B: PNQ231110906034 Ref C: 2025-11-12T07:44:17Z' + - 'Ref A: B8BBC21450BE4EA88127DFB4FC9D9386 Ref B: SG2AA1070304025 Ref C: 2025-11-13T07:40:44Z' x-powered-by: - ASP.NET status: @@ -1962,7 +1904,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6","name":"functionapp000003--1hxsyb6","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T07:44:09+00:00","fqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon","name":"functionapp000003--w23faon","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:40:36+00:00","fqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1972,11 +1914,11 @@ interactions: cache-control: - no-cache content-length: - - '1455' + - '1454' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:29 GMT + - Thu, 13 Nov 2025 07:40:47 GMT expires: - '-1' pragma: @@ -1990,11 +1932,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/6e57e92e-c045-4766-a1d5-4a645ed1a1b8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/d6c2f1dc-f90c-494b-87f3-8d5e1d62f9e1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BBD2BC67799F4834BF28CD3E04A755E5 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:44:29Z' + - 'Ref A: AF0B7881616042AC9669AD0275C7EAE5 Ref B: SG2AA1070306031 Ref C: 2025-11-13T07:40:46Z' x-powered-by: - ASP.NET status: @@ -2017,11 +1959,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2035,7 +1977,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:30 GMT + - Thu, 13 Nov 2025 07:40:50 GMT expires: - '-1' pragma: @@ -2051,7 +1993,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 27E01F16F253414E9D9A739B58B0C61E Ref B: PNQ231110907054 Ref C: 2025-11-12T07:44:30Z' + - 'Ref A: E24F31219BD847D295A19CCF842F0FB3 Ref B: SG2AA1070301029 Ref C: 2025-11-13T07:40:49Z' x-powered-by: - ASP.NET status: @@ -2074,12 +2016,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2093,7 +2035,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:31 GMT + - Thu, 13 Nov 2025 07:40:50 GMT expires: - '-1' pragma: @@ -2107,11 +2049,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/930aee59-382f-4d0f-ab6a-172aabf5e283 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/75f70da1-907e-4a68-9c90-86035f4c3613 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D4C025EFEAE5472E900CCCC6CF92CE8F Ref B: PNQ231110908036 Ref C: 2025-11-12T07:44:31Z' + - 'Ref A: BCBF5A21E9A74C4291853236F577CEED Ref B: SG2AA1070302029 Ref C: 2025-11-13T07:40:50Z' x-powered-by: - ASP.NET status: @@ -2134,11 +2076,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2152,7 +2094,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:32 GMT + - Thu, 13 Nov 2025 07:40:51 GMT expires: - '-1' pragma: @@ -2168,7 +2110,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A286BAD92C6B45C4AC14D0F860FBD25A Ref B: PNQ231110906052 Ref C: 2025-11-12T07:44:32Z' + - 'Ref A: 5F9DB651F35D4FE3B18BEA6A391EF057 Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:40:52Z' x-powered-by: - ASP.NET status: @@ -2191,11 +2133,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2209,7 +2151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:32 GMT + - Thu, 13 Nov 2025 07:40:52 GMT expires: - '-1' pragma: @@ -2225,7 +2167,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8CB7EEE3649148EAB5E750ABE5CA6703 Ref B: PNQ231110906060 Ref C: 2025-11-12T07:44:33Z' + - 'Ref A: F4D3666A79D24BEBA658D24F951EDF75 Ref B: SG2AA1070304054 Ref C: 2025-11-13T07:40:52Z' x-powered-by: - ASP.NET status: @@ -2248,12 +2190,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2267,7 +2209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:33 GMT + - Thu, 13 Nov 2025 07:40:53 GMT expires: - '-1' pragma: @@ -2281,11 +2223,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/589b5a0a-6d6b-45a4-a8cd-701de39e5a0e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/6ef84b1b-24cf-4cd5-a510-8434955a02e2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2F27BABB866A436480F7649CC6D37411 Ref B: PNQ231110906054 Ref C: 2025-11-12T07:44:33Z' + - 'Ref A: 6D5696C77C1B4036AECD52630996BF9F Ref B: SG2AA1070306062 Ref C: 2025-11-13T07:40:53Z' x-powered-by: - ASP.NET status: @@ -2308,12 +2250,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2327,7 +2269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:33 GMT + - Thu, 13 Nov 2025 07:40:54 GMT expires: - '-1' pragma: @@ -2341,11 +2283,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e23eb357-6657-4ba1-bca2-84cc11549229 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/80810609-c3ab-47ce-abc9-cf5cab7651f0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6F81A73724E9467CB071FA41BCD81296 Ref B: PNQ231110908052 Ref C: 2025-11-12T07:44:34Z' + - 'Ref A: CCA6D32E5ED44AA1ADF9DABD2C7FD5CB Ref B: SG2AA1070306025 Ref C: 2025-11-13T07:40:54Z' x-powered-by: - ASP.NET status: @@ -2370,10 +2312,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:34.5617149Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:40:55.2317768Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2387,7 +2329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:34 GMT + - Thu, 13 Nov 2025 07:40:54 GMT expires: - '-1' pragma: @@ -2401,13 +2343,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b3614e9c-07d7-48a3-b908-31e1d14843a8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/566dab6a-2fbf-4ff4-99b2-d9b76dd566e2 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 41B28C99E4CD4CD88D5FC69BAD7D29DC Ref B: PNQ231110906036 Ref C: 2025-11-12T07:44:34Z' + - 'Ref A: 0C702108C3424E1F91C11F7BFF39193C Ref B: SG2AA1070303034 Ref C: 2025-11-13T07:40:54Z' x-powered-by: - ASP.NET status: @@ -2430,7 +2372,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+hostKey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+hostKey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"default\",\n\"value\": @@ -2441,7 +2383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:37 GMT + - Thu, 13 Nov 2025 07:41:01 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -2470,11 +2412,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2488,7 +2430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:38 GMT + - Thu, 13 Nov 2025 07:41:02 GMT expires: - '-1' pragma: @@ -2504,7 +2446,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9D5F90141948403B99EE146197449ACC Ref B: PNQ231110906031 Ref C: 2025-11-12T07:44:39Z' + - 'Ref A: 99B8C4265A3D41E2915F71812807640D Ref B: SG2AA1070301040 Ref C: 2025-11-13T07:41:02Z' x-powered-by: - ASP.NET status: @@ -2527,11 +2469,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2545,7 +2487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:39 GMT + - Thu, 13 Nov 2025 07:41:03 GMT expires: - '-1' pragma: @@ -2561,7 +2503,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F8BAEC5F593D4D1982B73C7DEA503999 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:44:39Z' + - 'Ref A: 27AFA733A70648809D1B77BF447A8EBF Ref B: SG2AA1070305062 Ref C: 2025-11-13T07:41:03Z' x-powered-by: - ASP.NET status: @@ -2584,12 +2526,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2603,7 +2545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:39 GMT + - Thu, 13 Nov 2025 07:41:03 GMT expires: - '-1' pragma: @@ -2617,11 +2559,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c82232b2-8c01-4ef4-bcd1-dcc1db7a69c1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/59aef36a-5916-45dc-8053-d043fb2c8e35 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EF15E9C54E7B42A59BB5DECC0A63B12A Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:39Z' + - 'Ref A: 8299B6C4C53B4EB4A1D4D0DFB1A880DB Ref B: SG2AA1070305036 Ref C: 2025-11-13T07:41:03Z' x-powered-by: - ASP.NET status: @@ -2644,12 +2586,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2663,7 +2605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:40 GMT + - Thu, 13 Nov 2025 07:41:04 GMT expires: - '-1' pragma: @@ -2677,11 +2619,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/6c576173-a4ef-4436-9d1a-a9eb557dfe5d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d12eb6ee-d7f4-4b2e-a3ed-28feda2dd58b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 00AA4A68C09A4BA99BCE1DF181BFCF78 Ref B: PNQ231110907040 Ref C: 2025-11-12T07:44:40Z' + - 'Ref A: 0576C8A639EA4B399E0E7DEFC516C5DB Ref B: SG2AA1070301040 Ref C: 2025-11-13T07:41:04Z' x-powered-by: - ASP.NET status: @@ -2706,10 +2648,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:41.2144903Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:41:05.4981887Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2723,7 +2665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:40 GMT + - Thu, 13 Nov 2025 07:41:04 GMT expires: - '-1' pragma: @@ -2737,13 +2679,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c5ab4b7b-c7af-4057-a7e3-9ffa74bbbbe8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e3ca15cf-301a-43a8-9282-027fadd7e662 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2E7B41B0BCFA4C169FADDF6422A73BDC Ref B: PNQ231110907042 Ref C: 2025-11-12T07:44:40Z' + - 'Ref A: 8BA64F8172F24A5594121C89859DBC7B Ref B: SG2AA1070303062 Ref C: 2025-11-13T07:41:05Z' x-powered-by: - ASP.NET status: @@ -2766,7 +2708,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+masterKey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+masterKey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"_master\",\n\"value\": @@ -2777,7 +2719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:44 GMT + - Thu, 13 Nov 2025 07:41:08 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -2806,11 +2748,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2824,7 +2766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:44 GMT + - Thu, 13 Nov 2025 07:41:10 GMT expires: - '-1' pragma: @@ -2840,7 +2782,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C169A73468E841EF94593C3A2CB7DBFC Ref B: PNQ231110907060 Ref C: 2025-11-12T07:44:45Z' + - 'Ref A: B3421DD5AB3E40229A819BAAAFE1B614 Ref B: SG2AA1070302029 Ref C: 2025-11-13T07:41:10Z' x-powered-by: - ASP.NET status: @@ -2863,11 +2805,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2881,7 +2823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:45 GMT + - Thu, 13 Nov 2025 07:41:12 GMT expires: - '-1' pragma: @@ -2897,7 +2839,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DD6E34A55DC5444FB1EE7C202102763F Ref B: PNQ231110908042 Ref C: 2025-11-12T07:44:45Z' + - 'Ref A: 1E7D78F53B6643DBA60C570E19E2E384 Ref B: SG2AA1070306040 Ref C: 2025-11-13T07:41:11Z' x-powered-by: - ASP.NET status: @@ -2920,12 +2862,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2939,7 +2881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:46 GMT + - Thu, 13 Nov 2025 07:41:12 GMT expires: - '-1' pragma: @@ -2953,11 +2895,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/90d4d583-4e8b-4571-80d6-9e8858c2dd43 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e029c076-1136-4be6-bed6-ea3888832054 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A1E8D49C2D134E33AFB1E31DDE4317F4 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:44:46Z' + - 'Ref A: 06627826041140968876772C064FC916 Ref B: SG2AA1070306036 Ref C: 2025-11-13T07:41:13Z' x-powered-by: - ASP.NET status: @@ -2980,12 +2922,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2999,7 +2941,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:46 GMT + - Thu, 13 Nov 2025 07:41:14 GMT expires: - '-1' pragma: @@ -3013,11 +2955,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/831323ec-a069-46dc-abee-54989de1125f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/3f9900a4-8c9b-4638-9b46-3dc9c9628188 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 202CC2CF568B4BFC8A9FC82FCE06D29B Ref B: PNQ231110909023 Ref C: 2025-11-12T07:44:47Z' + - 'Ref A: 20DC9CC7311645DF9AC9E12AE0D6DE1C Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:41:13Z' x-powered-by: - ASP.NET status: @@ -3042,10 +2984,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:47.9300762Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:41:14.8264736Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3059,7 +3001,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:47 GMT + - Thu, 13 Nov 2025 07:41:14 GMT expires: - '-1' pragma: @@ -3073,13 +3015,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0d1c302a-403f-4cc9-a00c-05cbc683c718 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0c0c9281-835a-4de5-a9b3-1bd430ff936d x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: D1AF1319303642FA98EB663CB2577D63 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:44:47Z' + - 'Ref A: D095A3762BD844EB8AD454A2545E357C Ref B: SG2AA1070306040 Ref C: 2025-11-13T07:41:14Z' x-powered-by: - ASP.NET status: @@ -3102,7 +3044,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+systemKey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+systemKey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": []\n}\n}"}' @@ -3112,7 +3054,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:51 GMT + - Thu, 13 Nov 2025 07:41:18 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -3141,11 +3083,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3159,7 +3101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:51 GMT + - Thu, 13 Nov 2025 07:41:19 GMT expires: - '-1' pragma: @@ -3175,7 +3117,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 042339EEF2E3467B92CE7784F9954896 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:44:52Z' + - 'Ref A: B8AAEC9764A142EA8A856E659DC4BA4F Ref B: SG2AA1070303060 Ref C: 2025-11-13T07:41:19Z' x-powered-by: - ASP.NET status: @@ -3198,11 +3140,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3216,7 +3158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:51 GMT + - Thu, 13 Nov 2025 07:41:21 GMT expires: - '-1' pragma: @@ -3232,7 +3174,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D4FD537FE364F3FB641CC79C09D0A9C Ref B: PNQ231110908034 Ref C: 2025-11-12T07:44:52Z' + - 'Ref A: FA1B922EB15A496BAE34C44D76A0A883 Ref B: SG2AA1070306062 Ref C: 2025-11-13T07:41:20Z' x-powered-by: - ASP.NET status: @@ -3255,12 +3197,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3274,7 +3216,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:52 GMT + - Thu, 13 Nov 2025 07:41:21 GMT expires: - '-1' pragma: @@ -3288,11 +3230,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e6188825-3886-4fbc-b6a3-f05df9ba8f80 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/6f8760d0-f217-4e3d-96cf-445c0670bb21 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EFF778D0A9EF4AA4853AA602B27E31A7 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:52Z' + - 'Ref A: 724047192D234C25B6843C4C0BA77980 Ref B: SG2AA1070305031 Ref C: 2025-11-13T07:41:21Z' x-powered-by: - ASP.NET status: @@ -3315,12 +3257,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3334,7 +3276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:53 GMT + - Thu, 13 Nov 2025 07:41:22 GMT expires: - '-1' pragma: @@ -3348,11 +3290,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/cadd4f06-f876-46c4-b5be-ecd49fb3fa4d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/4836ef5b-2569-490e-8644-aabd90318631 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9320509EE4A8437483238C2CAB17101D Ref B: PNQ231110908023 Ref C: 2025-11-12T07:44:53Z' + - 'Ref A: BB1F88D9132D41B484E1C0F1742F9231 Ref B: SG2AA1070301031 Ref C: 2025-11-13T07:41:22Z' x-powered-by: - ASP.NET status: @@ -3377,10 +3319,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:44:54.2719163Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:41:23.7617226Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3394,7 +3336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:53 GMT + - Thu, 13 Nov 2025 07:41:23 GMT expires: - '-1' pragma: @@ -3408,13 +3350,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/3285a28c-0a97-40c0-bb3a-4f4682537fa1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/20411970-281f-4d43-9039-a4605acd5467 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4C1875279CF54953AC066D29FC44C930 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:44:54Z' + - 'Ref A: 754D3E9F5602409091F45B487F3A4712 Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:41:23Z' x-powered-by: - ASP.NET status: @@ -3437,7 +3379,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+functionKey+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+list+--key-type+functionKey+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": [\n{\n\"name\": \"default\",\n\"value\": @@ -3448,7 +3390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:58 GMT + - Thu, 13 Nov 2025 07:41:27 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -3477,11 +3419,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3495,7 +3437,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:44:59 GMT + - Thu, 13 Nov 2025 07:41:28 GMT expires: - '-1' pragma: @@ -3511,7 +3453,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CD769347F0C74FC7A7B5467CDC3286DD Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:59Z' + - 'Ref A: DD83027906704CE1AB6C342FF1A36E21 Ref B: SG2AA1070305040 Ref C: 2025-11-13T07:41:28Z' x-powered-by: - ASP.NET status: @@ -3534,11 +3476,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3552,7 +3494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:00 GMT + - Thu, 13 Nov 2025 07:41:29 GMT expires: - '-1' pragma: @@ -3568,7 +3510,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DE132A8B65EC4186B65842756934F5A1 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:00Z' + - 'Ref A: 65E811BF019B4F7DAFA0C26B9406E269 Ref B: SG2AA1070305036 Ref C: 2025-11-13T07:41:29Z' x-powered-by: - ASP.NET status: @@ -3591,12 +3533,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3610,7 +3552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:00 GMT + - Thu, 13 Nov 2025 07:41:29 GMT expires: - '-1' pragma: @@ -3624,11 +3566,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/380648f6-89b2-44a6-bc57-27ba72a60bc7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d1c38d05-9748-4598-81d9-7617d9548ba9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5E7FE5A29CC64B87B5B0E117755CA996 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:45:00Z' + - 'Ref A: B3CFAD5E74F0412289F956960A814DC8 Ref B: SG2AA1070302023 Ref C: 2025-11-13T07:41:30Z' x-powered-by: - ASP.NET status: @@ -3651,12 +3593,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3670,7 +3612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:00 GMT + - Thu, 13 Nov 2025 07:41:30 GMT expires: - '-1' pragma: @@ -3684,11 +3626,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b5d96f66-df08-48b7-ad5e-d79cf5d2755c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ce99a549-212c-4583-95b9-5c15ab73cc4e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DB2BC59C6C644668873C542F7025B86B Ref B: PNQ231110906060 Ref C: 2025-11-12T07:45:01Z' + - 'Ref A: 75DCA32477B149008DD41FEF9018B776 Ref B: SG2AA1070306054 Ref C: 2025-11-13T07:41:31Z' x-powered-by: - ASP.NET status: @@ -3713,10 +3655,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:01.5908585Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:41:32.5555415Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3730,7 +3672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:00 GMT + - Thu, 13 Nov 2025 07:41:31 GMT expires: - '-1' pragma: @@ -3744,13 +3686,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9d833ac3-3e9d-4613-9163-2484a1ae5ed7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ce49a87c-8a25-4919-9e1f-5fdc559a0dfb x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 7868FD7BAC4B47479913AFD60A0B5393 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:01Z' + - 'Ref A: 22471854BE62488F9C656E56B85C4AB5 Ref B: SG2AA1070305023 Ref C: 2025-11-13T07:41:32Z' x-powered-by: - ASP.NET status: @@ -3773,7 +3715,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+default + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+default response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"default\",\n\"value\": @@ -3784,7 +3726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:04 GMT + - Thu, 13 Nov 2025 07:41:36 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -3813,11 +3755,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3831,7 +3773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:05 GMT + - Thu, 13 Nov 2025 07:41:37 GMT expires: - '-1' pragma: @@ -3847,7 +3789,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D5AE9A004B5486E9EA5C043DB258F37 Ref B: PNQ231110906031 Ref C: 2025-11-12T07:45:05Z' + - 'Ref A: 1C781AD5CFB541C880C4D7E9107D34A0 Ref B: SG2AA1070304054 Ref C: 2025-11-13T07:41:37Z' x-powered-by: - ASP.NET status: @@ -3870,11 +3812,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3888,7 +3830,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:05 GMT + - Thu, 13 Nov 2025 07:41:38 GMT expires: - '-1' pragma: @@ -3904,7 +3846,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 733EDB82CAB347DFB0DD184C813750FA Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:06Z' + - 'Ref A: D13EBA322D274D0BBA1A91FC7D85D694 Ref B: SG2AA1070304060 Ref C: 2025-11-13T07:41:38Z' x-powered-by: - ASP.NET status: @@ -3927,12 +3869,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3946,7 +3888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:06 GMT + - Thu, 13 Nov 2025 07:41:39 GMT expires: - '-1' pragma: @@ -3960,11 +3902,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b4457034-2cac-495c-8b42-e2b88fd22eec + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/66ffcf35-3d1c-40a2-b473-034ebf777cca x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B24BF6D50B9A4BBD90FDD6B79F3CFE67 Ref B: PNQ231110906025 Ref C: 2025-11-12T07:45:06Z' + - 'Ref A: DC88803982F64A4C800B664BCE788C15 Ref B: SG2AA1070302034 Ref C: 2025-11-13T07:41:39Z' x-powered-by: - ASP.NET status: @@ -3987,12 +3929,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4006,7 +3948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:06 GMT + - Thu, 13 Nov 2025 07:41:40 GMT expires: - '-1' pragma: @@ -4020,11 +3962,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/a7d1325f-673b-4f31-af1f-b51f029fbc30 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/94ad5ee3-2bca-445e-8cae-c97d9dae7b6d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D67B33FFA94D46B28C5D6DF8B02A44CA Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45:06Z' + - 'Ref A: 6A4A9EFB881440B6879E6348F30084F1 Ref B: SG2AA1070301054 Ref C: 2025-11-13T07:41:40Z' x-powered-by: - ASP.NET status: @@ -4049,10 +3991,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:07.5303285Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:41:42.2595849Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4066,7 +4008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:07 GMT + - Thu, 13 Nov 2025 07:41:42 GMT expires: - '-1' pragma: @@ -4080,13 +4022,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/f5acee6d-d951-4c81-baab-6b9e1033415d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d34ebba9-fc9e-4438-b2c4-412e06ab1d3a x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8212139D90C3459490FCE773F46EFAB8 Ref B: PNQ231110906040 Ref C: 2025-11-12T07:45:07Z' + - 'Ref A: 4D83B61C42A04B668DA7D179B67F2490 Ref B: SG2AA1070302052 Ref C: 2025-11-13T07:41:41Z' x-powered-by: - ASP.NET status: @@ -4109,7 +4051,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+masterKey+--key-name+_master + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+masterKey+--key-name+_master response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"_master\",\n\"value\": @@ -4120,7 +4062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:10 GMT + - Thu, 13 Nov 2025 07:41:46 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -4149,11 +4091,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4167,7 +4109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:10 GMT + - Thu, 13 Nov 2025 07:41:48 GMT expires: - '-1' pragma: @@ -4183,7 +4125,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44E824C3D45F4A2C9EAFEFF3F75CBD9B Ref B: PNQ231110907062 Ref C: 2025-11-12T07:45:11Z' + - 'Ref A: 752CDF8BD8FF4DDAB71C930674DFF303 Ref B: SG2AA1070304060 Ref C: 2025-11-13T07:41:48Z' x-powered-by: - ASP.NET status: @@ -4206,11 +4148,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4224,7 +4166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:11 GMT + - Thu, 13 Nov 2025 07:41:48 GMT expires: - '-1' pragma: @@ -4240,7 +4182,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E64CA809E6CC46138C99D7CB02B41579 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:11Z' + - 'Ref A: FF5F656CC3CD4F4886FEB2E9A48DEFC0 Ref B: SG2AA1070306054 Ref C: 2025-11-13T07:41:49Z' x-powered-by: - ASP.NET status: @@ -4263,12 +4205,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4282,7 +4224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:12 GMT + - Thu, 13 Nov 2025 07:41:49 GMT expires: - '-1' pragma: @@ -4296,11 +4238,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/45388dcc-283f-4c32-ac44-ba03d386b78e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d0d3e11e-0c93-4895-82ae-b4b9e1f7db28 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6A432E5766A14C87A5F9CA013D31A825 Ref B: PNQ231110908034 Ref C: 2025-11-12T07:45:12Z' + - 'Ref A: 0827B0F58C294275B2DAE33EAC9E209C Ref B: SG2AA1070305060 Ref C: 2025-11-13T07:41:50Z' x-powered-by: - ASP.NET status: @@ -4323,12 +4265,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4342,7 +4284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:12 GMT + - Thu, 13 Nov 2025 07:41:50 GMT expires: - '-1' pragma: @@ -4356,11 +4298,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1fd3aa23-2d30-4191-bbc0-c85bdc45b64e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1d8c997f-d949-44f0-af18-99027c4d2933 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8C8A56D27BD14BCC8C73DDB45BA26EC7 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:45:13Z' + - 'Ref A: 42F0CE86F4C845718F444890BE7EEC8C Ref B: SG2AA1070306034 Ref C: 2025-11-13T07:41:50Z' x-powered-by: - ASP.NET status: @@ -4385,10 +4327,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:13.6270338Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:41:51.9726407Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4402,7 +4344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:13 GMT + - Thu, 13 Nov 2025 07:41:51 GMT expires: - '-1' pragma: @@ -4416,13 +4358,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1176f62d-0659-421d-a08b-dfce5d0f1683 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/988a0275-619d-4b32-bf6d-54732bf418a3 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BBFFE46C8AF44E8C8A071DD58AC26E89 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:13Z' + - 'Ref A: 8B091B07B3C04A868C73A741A0DB3B29 Ref B: SG2AA1070303031 Ref C: 2025-11-13T07:41:51Z' x-powered-by: - ASP.NET status: @@ -4445,7 +4387,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+default+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+default+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"default\",\n\"value\": @@ -4456,7 +4398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:16 GMT + - Thu, 13 Nov 2025 07:41:55 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -4485,11 +4427,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4503,7 +4445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:17 GMT + - Thu, 13 Nov 2025 07:41:56 GMT expires: - '-1' pragma: @@ -4519,7 +4461,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AF4BDA6688A74203B12A837B01B71345 Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:17Z' + - 'Ref A: CD0253AA97144117ACAE2E43C6A2EB32 Ref B: SG2AA1070302029 Ref C: 2025-11-13T07:41:57Z' x-powered-by: - ASP.NET status: @@ -4542,11 +4484,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4560,7 +4502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:18 GMT + - Thu, 13 Nov 2025 07:41:57 GMT expires: - '-1' pragma: @@ -4576,7 +4518,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2B9C754C01A746548E57B0A5896123E0 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:18Z' + - 'Ref A: 828FCC405EE9401983FB1409FCE4C91E Ref B: SG2AA1070304023 Ref C: 2025-11-13T07:41:57Z' x-powered-by: - ASP.NET status: @@ -4599,12 +4541,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4618,7 +4560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:18 GMT + - Thu, 13 Nov 2025 07:41:58 GMT expires: - '-1' pragma: @@ -4632,11 +4574,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ad6612eb-a632-43cc-a8b1-61c8f331d1b5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/2459c4cd-1545-4936-bf28-ac304a0c31a3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B04705C77B964023A282B222B9D621A1 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:18Z' + - 'Ref A: 446E04CC89FA4C4EA211D3AE078A88D2 Ref B: SG2AA1070306031 Ref C: 2025-11-13T07:41:58Z' x-powered-by: - ASP.NET status: @@ -4659,12 +4601,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4678,7 +4620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:18 GMT + - Thu, 13 Nov 2025 07:41:59 GMT expires: - '-1' pragma: @@ -4692,11 +4634,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9cb18766-b831-491a-b7ad-d1354cd87354 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/13212809-a61a-4515-a86a-63fb97866d47 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D61FE5ABCF194A7981DE2D9BC570F98A Ref B: PNQ231110906062 Ref C: 2025-11-12T07:45:19Z' + - 'Ref A: 0DD7DD72615A4ACDAA3C5FFAD8FDC46E Ref B: SG2AA1070305025 Ref C: 2025-11-13T07:41:59Z' x-powered-by: - ASP.NET status: @@ -4721,10 +4663,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:20.3063481Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:42:00.8925114Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4738,7 +4680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:19 GMT + - Thu, 13 Nov 2025 07:42:00 GMT expires: - '-1' pragma: @@ -4752,13 +4694,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/711ac6d0-ce35-4553-b856-a5a7171bfaeb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/dc11de16-802b-40ec-bc33-d235c2ef104c x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: B927969926BC40D7A3F2D4E4110DCED8 Ref B: PNQ231110908031 Ref C: 2025-11-12T07:45:19Z' + - 'Ref A: 274A5E4D48C24E648A71B1634A085CA5 Ref B: SG2AA1070301062 Ref C: 2025-11-13T07:42:00Z' x-powered-by: - ASP.NET status: @@ -4781,7 +4723,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+MyCustomKeyValue123456789 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+MyCustomKeyValue123456789 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -4792,7 +4734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:23 GMT + - Thu, 13 Nov 2025 07:42:04 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -4821,11 +4763,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4839,7 +4781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:24 GMT + - Thu, 13 Nov 2025 07:42:05 GMT expires: - '-1' pragma: @@ -4855,7 +4797,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3C63F167651242F2A85792157E05D412 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:24Z' + - 'Ref A: 608D5EE69DBA4D4485FF99979FDB083B Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:42:06Z' x-powered-by: - ASP.NET status: @@ -4878,11 +4820,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4896,7 +4838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:24 GMT + - Thu, 13 Nov 2025 07:42:06 GMT expires: - '-1' pragma: @@ -4912,7 +4854,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 484C108CA842480792DFDFA5D45DA9DB Ref B: PNQ231110907031 Ref C: 2025-11-12T07:45:24Z' + - 'Ref A: C2087596338B4D5F817E948D1B81E754 Ref B: SG2AA1070303023 Ref C: 2025-11-13T07:42:06Z' x-powered-by: - ASP.NET status: @@ -4935,12 +4877,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4954,7 +4896,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:25 GMT + - Thu, 13 Nov 2025 07:42:07 GMT expires: - '-1' pragma: @@ -4968,11 +4910,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7760d970-3262-468a-ac68-e9666ffa050f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/5911be7b-4d82-40ca-a605-cb181cb798b9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1F7757AA7FFF422ABD8DFC8C7E81A905 Ref B: PNQ231110909040 Ref C: 2025-11-12T07:45:25Z' + - 'Ref A: 5766A7BDF2774D97BA529072A13FD6F7 Ref B: SG2AA1070306023 Ref C: 2025-11-13T07:42:07Z' x-powered-by: - ASP.NET status: @@ -4995,12 +4937,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5014,7 +4956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:25 GMT + - Thu, 13 Nov 2025 07:42:07 GMT expires: - '-1' pragma: @@ -5028,11 +4970,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d7c30a65-05a1-4a00-8e98-19bf57ed21c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/21428b96-eaaf-4712-96aa-4c73df5b8e98 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AB2097BFD21342528BAE11811A193BCA Ref B: PNQ231110906054 Ref C: 2025-11-12T07:45:25Z' + - 'Ref A: A8875C55D743407193A5EFF1677E48FF Ref B: SG2AA1070305042 Ref C: 2025-11-13T07:42:08Z' x-powered-by: - ASP.NET status: @@ -5057,10 +4999,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:26.0768833Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:42:08.981555Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5070,11 +5012,11 @@ interactions: cache-control: - no-cache content-length: - - '865' + - '864' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:25 GMT + - Thu, 13 Nov 2025 07:42:08 GMT expires: - '-1' pragma: @@ -5088,13 +5030,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/511695ea-c82f-47e7-b34a-2df61af4026e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/cfe19838-7a38-4cb6-9513-469fa7fc5fe1 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 3EA71B3B5FCA4810825E728E6DAF04E7 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:25Z' + - 'Ref A: 5497005D26004A08A5A890120FBBDC29 Ref B: SG2AA1070302023 Ref C: 2025-11-13T07:42:08Z' x-powered-by: - ASP.NET status: @@ -5117,7 +5059,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -5128,7 +5070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:28 GMT + - Thu, 13 Nov 2025 07:42:12 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -5157,11 +5099,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5175,7 +5117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:29 GMT + - Thu, 13 Nov 2025 07:42:13 GMT expires: - '-1' pragma: @@ -5191,7 +5133,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 77257950D1E74809A8C63B07AAF386E4 Ref B: PNQ231110907036 Ref C: 2025-11-12T07:45:30Z' + - 'Ref A: A120BD0A165C47EDB3C8B32517A138EA Ref B: SG2AA1070306054 Ref C: 2025-11-13T07:42:14Z' x-powered-by: - ASP.NET status: @@ -5214,11 +5156,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5232,7 +5174,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:30 GMT + - Thu, 13 Nov 2025 07:42:14 GMT expires: - '-1' pragma: @@ -5248,7 +5190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AA2F473391C74DE4BE6266596E8E5A97 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:30Z' + - 'Ref A: DB20CB1199614C55895EE875AC978953 Ref B: SG2AA1070302036 Ref C: 2025-11-13T07:42:14Z' x-powered-by: - ASP.NET status: @@ -5271,12 +5213,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5290,7 +5232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:30 GMT + - Thu, 13 Nov 2025 07:42:16 GMT expires: - '-1' pragma: @@ -5304,11 +5246,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/931658ad-9182-4dd4-b63c-c4e7a49f8b6f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/dbc184cb-2ffe-4c47-a159-ebda03059739 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4E81B4C0586C4FFCB579AFD48C840BD5 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:31Z' + - 'Ref A: 4C399B9F5C74469F9E51E3F71EC27390 Ref B: SG2AA1070302040 Ref C: 2025-11-13T07:42:15Z' x-powered-by: - ASP.NET status: @@ -5331,12 +5273,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5350,7 +5292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:32 GMT + - Thu, 13 Nov 2025 07:42:16 GMT expires: - '-1' pragma: @@ -5364,11 +5306,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/de7318f4-ff74-4f02-ae42-56466e76c00f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/1fbe4035-6433-4b06-b71e-506524a2975e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C1275D41E0964E51824A4AD8C80A0359 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:31Z' + - 'Ref A: B998FA633ED845EBAA5C6D9A2E5B501E Ref B: SG2AA1070302029 Ref C: 2025-11-13T07:42:16Z' x-powered-by: - ASP.NET status: @@ -5393,10 +5335,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:33.3084076Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:42:17.6810776Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5410,7 +5352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:32 GMT + - Thu, 13 Nov 2025 07:42:17 GMT expires: - '-1' pragma: @@ -5424,13 +5366,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/08126620-aee0-4504-8659-b65e152f1eb3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7e5b6599-8665-40ff-b8e4-ebe8233f7751 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: A062FFE6E72E46CB94E355B09B9076BE Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:32Z' + - 'Ref A: 962ACECB891C4E829367BEF9E00C2C1B Ref B: SG2AA1070301042 Ref C: 2025-11-13T07:42:17Z' x-powered-by: - ASP.NET status: @@ -5453,7 +5395,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+hostKey+--key-name+mycustomkey+--key-value+MyHostKeyValue123456789 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+hostKey+--key-name+mycustomkey+--key-value+MyHostKeyValue123456789 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -5464,7 +5406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:36 GMT + - Thu, 13 Nov 2025 07:42:22 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -5493,11 +5435,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5511,7 +5453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:37 GMT + - Thu, 13 Nov 2025 07:42:23 GMT expires: - '-1' pragma: @@ -5527,7 +5469,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 92BB6808F01F4B908C462D4A0981F4CD Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:38Z' + - 'Ref A: 8B7F062A52E54612BBE82C2DA800F1B1 Ref B: SG2AA1070301036 Ref C: 2025-11-13T07:42:23Z' x-powered-by: - ASP.NET status: @@ -5550,11 +5492,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5568,7 +5510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:37 GMT + - Thu, 13 Nov 2025 07:42:24 GMT expires: - '-1' pragma: @@ -5584,7 +5526,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3569776B6F4C499C8C144C70F2DE38E1 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:38Z' + - 'Ref A: 7A64502012C245CF9048821ECA0A2DF1 Ref B: SG2AA1070301062 Ref C: 2025-11-13T07:42:24Z' x-powered-by: - ASP.NET status: @@ -5607,12 +5549,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5626,7 +5568,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:38 GMT + - Thu, 13 Nov 2025 07:42:25 GMT expires: - '-1' pragma: @@ -5640,11 +5582,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e961feab-5cd5-412b-a63e-a8b0cf67dad3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/89ab5066-5d1e-42dd-b4bd-896b45b3e4a2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 337C326230FD4B669520127407BC23BF Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:38Z' + - 'Ref A: 72C8816FA38640B19CA6CABDA127C0B2 Ref B: SG2AA1070303025 Ref C: 2025-11-13T07:42:25Z' x-powered-by: - ASP.NET status: @@ -5667,12 +5609,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5686,7 +5628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:38 GMT + - Thu, 13 Nov 2025 07:42:26 GMT expires: - '-1' pragma: @@ -5700,11 +5642,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c98eacce-5660-4ea8-941e-f5a3f4382e5b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b3d83e0f-9a5b-409d-988e-78ee849321f8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 393E6453024249738DB90665D6868E6B Ref B: PNQ231110908031 Ref C: 2025-11-12T07:45:39Z' + - 'Ref A: 0EA7FA669EAF477BB4D82AC2B1234D5F Ref B: SG2AA1070302040 Ref C: 2025-11-13T07:42:26Z' x-powered-by: - ASP.NET status: @@ -5729,10 +5671,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:39.6728182Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:42:27.6262862Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5746,7 +5688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:39 GMT + - Thu, 13 Nov 2025 07:42:27 GMT expires: - '-1' pragma: @@ -5760,13 +5702,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9d5e7199-5aa7-474b-8745-67256f1e1d91 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/f25bc129-76ba-46bf-8bc3-86a8acaf78f5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2FA840ECEF114D86A9FA0F51F86BDC3D Ref B: PNQ231110906025 Ref C: 2025-11-12T07:45:39Z' + - 'Ref A: 7DEEE81AA03F45F388836E10DE99FF80 Ref B: SG2AA1070303023 Ref C: 2025-11-13T07:42:27Z' x-powered-by: - ASP.NET status: @@ -5789,7 +5731,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+mycustomkey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+hostKey+--key-name+mycustomkey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -5800,7 +5742,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:43 GMT + - Thu, 13 Nov 2025 07:42:31 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -5829,11 +5771,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5847,7 +5789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:44 GMT + - Thu, 13 Nov 2025 07:42:32 GMT expires: - '-1' pragma: @@ -5863,7 +5805,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B860274BB47244D894CD9EE2D1681997 Ref B: PNQ231110907029 Ref C: 2025-11-12T07:45:43Z' + - 'Ref A: DF454592269C497DA1CCC8CF0112DCAE Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:42:32Z' x-powered-by: - ASP.NET status: @@ -5886,11 +5828,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5904,7 +5846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:43 GMT + - Thu, 13 Nov 2025 07:42:32 GMT expires: - '-1' pragma: @@ -5920,7 +5862,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 24285A213D0B4799A895AE78C853AF60 Ref B: PNQ231110907036 Ref C: 2025-11-12T07:45:44Z' + - 'Ref A: C54FC895C25C4B26A5D7C91BD40F7BE9 Ref B: SG2AA1070304034 Ref C: 2025-11-13T07:42:33Z' x-powered-by: - ASP.NET status: @@ -5943,12 +5885,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -5962,7 +5904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:44 GMT + - Thu, 13 Nov 2025 07:42:34 GMT expires: - '-1' pragma: @@ -5976,11 +5918,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/00fcd1c1-9f80-42cb-b54d-00c83a96c6e4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/aeb28dde-3c01-4e7e-b3da-b45a160a6877 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1A56CD5690C54887AA24F12C5DD808E5 Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:44Z' + - 'Ref A: D813B86F98F54171BEED0280A0E1B251 Ref B: SG2AA1070306025 Ref C: 2025-11-13T07:42:34Z' x-powered-by: - ASP.NET status: @@ -6003,12 +5945,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6022,7 +5964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:44 GMT + - Thu, 13 Nov 2025 07:42:35 GMT expires: - '-1' pragma: @@ -6036,11 +5978,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b8367441-e256-4130-8f1a-674b3d04a79c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c527f564-887e-458b-8583-9e8a8dd8615e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4E8C2DE4610548039EF8DC04FCE4EDB3 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:44Z' + - 'Ref A: 40C82F402BDE44F9AE31DE2189642579 Ref B: SG2AA1070302042 Ref C: 2025-11-13T07:42:34Z' x-powered-by: - ASP.NET status: @@ -6065,10 +6007,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:45.5556878Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:42:35.7273355Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6082,7 +6024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:44 GMT + - Thu, 13 Nov 2025 07:42:35 GMT expires: - '-1' pragma: @@ -6096,13 +6038,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/eca059be-9a99-4223-a5d6-b25714f603a4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/327a982c-805b-4b42-831b-7b2148669bca x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 09EBC88E772E48B8AD3748F9CD1A3F32 Ref B: PNQ231110907031 Ref C: 2025-11-12T07:45:45Z' + - 'Ref A: AFF5A411B9D6486481C989BA98BE7C39 Ref B: SG2AA1070301036 Ref C: 2025-11-13T07:42:35Z' x-powered-by: - ASP.NET status: @@ -6125,7 +6067,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+systemKey+--key-name+mycustomkey+--key-value+MySystemKeyValue123456789 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+systemKey+--key-name+mycustomkey+--key-value+MySystemKeyValue123456789 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -6136,7 +6078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:48 GMT + - Thu, 13 Nov 2025 07:42:39 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -6165,11 +6107,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6183,7 +6125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:49 GMT + - Thu, 13 Nov 2025 07:42:40 GMT expires: - '-1' pragma: @@ -6199,7 +6141,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1AD6EBD6374A4EAE911406155A937505 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:45:50Z' + - 'Ref A: 858023325CAB4F8182B5C719ADF6D65E Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:42:40Z' x-powered-by: - ASP.NET status: @@ -6222,11 +6164,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6240,7 +6182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:50 GMT + - Thu, 13 Nov 2025 07:42:41 GMT expires: - '-1' pragma: @@ -6256,7 +6198,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44B81B5BD00B455F8F719F42F0447931 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:50Z' + - 'Ref A: D268338DCF72448B8A1F414ADCFAF88D Ref B: SG2AA1070306025 Ref C: 2025-11-13T07:42:41Z' x-powered-by: - ASP.NET status: @@ -6279,12 +6221,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6298,7 +6240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:50 GMT + - Thu, 13 Nov 2025 07:42:42 GMT expires: - '-1' pragma: @@ -6312,11 +6254,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c2dc8de9-b0c9-450a-ba87-c20cc033c64f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/50dd8d25-1bd0-4954-aa20-22ad97e2bc07 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D566CF08C9BE450DBE6B4D6DD621251A Ref B: PNQ231110907052 Ref C: 2025-11-12T07:45:50Z' + - 'Ref A: 8596631050AC4C559F8D4A14C159803F Ref B: SG2AA1070306029 Ref C: 2025-11-13T07:42:42Z' x-powered-by: - ASP.NET status: @@ -6339,12 +6281,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6358,7 +6300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:51 GMT + - Thu, 13 Nov 2025 07:42:42 GMT expires: - '-1' pragma: @@ -6372,11 +6314,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/09422835-cf67-4109-a86d-ef820cb8f869 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c9ccd77a-3710-448b-ae10-71fbb5d5c5a0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2E47BFB876C94CC9BC04268D0C6F1605 Ref B: PNQ231110906040 Ref C: 2025-11-12T07:45:51Z' + - 'Ref A: 29D2AF393B674F50B0B88B7AEEA2DD61 Ref B: SG2AA1070305052 Ref C: 2025-11-13T07:42:43Z' x-powered-by: - ASP.NET status: @@ -6401,10 +6343,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:52.1483358Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:42:44.1188417Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6418,7 +6360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:51 GMT + - Thu, 13 Nov 2025 07:42:43 GMT expires: - '-1' pragma: @@ -6432,13 +6374,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/aa411088-39ea-4e19-91ad-13944b3d24f8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/179a7dae-048a-41a8-abdf-4e11fa792fe6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2554E731E58B40B995749F833EFF94FD Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45:51Z' + - 'Ref A: 92E495684BFF4B758815C0BE124ABE41 Ref B: SG2AA1070306042 Ref C: 2025-11-13T07:42:43Z' x-powered-by: - ASP.NET status: @@ -6461,7 +6403,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+systemKey+--key-name+mycustomkey + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+systemKey+--key-name+mycustomkey response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -6472,7 +6414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:54 GMT + - Thu, 13 Nov 2025 07:42:47 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -6501,11 +6443,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6519,7 +6461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:56 GMT + - Thu, 13 Nov 2025 07:42:48 GMT expires: - '-1' pragma: @@ -6535,7 +6477,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 799CFD8F25D4418FAA55F0B13378F512 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45:56Z' + - 'Ref A: 6B34BE35D82041538446608F6B37D141 Ref B: SG2AA1070305025 Ref C: 2025-11-13T07:42:49Z' x-powered-by: - ASP.NET status: @@ -6558,11 +6500,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6576,7 +6518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:56 GMT + - Thu, 13 Nov 2025 07:42:49 GMT expires: - '-1' pragma: @@ -6592,7 +6534,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8416D220B8AA4D599850C27FA1FDD586 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:45:56Z' + - 'Ref A: 18A2866252F24B3CAFBEF72922396414 Ref B: SG2AA1070303034 Ref C: 2025-11-13T07:42:49Z' x-powered-by: - ASP.NET status: @@ -6615,12 +6557,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6634,7 +6576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:57 GMT + - Thu, 13 Nov 2025 07:42:50 GMT expires: - '-1' pragma: @@ -6648,11 +6590,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d4fa6576-3db5-4f94-88a7-8de646be03a1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/15830e93-03da-4a33-918e-8148499a45c0 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A96D0AFFF02C4D999DAE700D33E9F36E Ref B: PNQ231110907029 Ref C: 2025-11-12T07:45:56Z' + - 'Ref A: 20A38B0A05B945208311892E61DAE08F Ref B: SG2AA1070302052 Ref C: 2025-11-13T07:42:50Z' x-powered-by: - ASP.NET status: @@ -6675,12 +6617,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6694,7 +6636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:57 GMT + - Thu, 13 Nov 2025 07:42:51 GMT expires: - '-1' pragma: @@ -6708,11 +6650,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c49d4886-adc1-4e61-a726-2afb59ad0a1d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/db187093-19d1-40ba-8cc1-7397dd8c8cdd x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 11437663B7D64F6FB5326A232D06595D Ref B: PNQ231110906042 Ref C: 2025-11-12T07:45:57Z' + - 'Ref A: 0C56675337C8490FAD782F87011D520D Ref B: SG2AA1070304062 Ref C: 2025-11-13T07:42:51Z' x-powered-by: - ASP.NET status: @@ -6737,10 +6679,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:45:57.9036129Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:42:52.6707004Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6754,7 +6696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:45:57 GMT + - Thu, 13 Nov 2025 07:42:51 GMT expires: - '-1' pragma: @@ -6768,13 +6710,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/470f8911-2cdf-4a75-b23f-7cdff7a37132 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/29d9c717-11b8-4496-9de5-b071058e13b9 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 06F833173B7B40BCB89A79151752E234 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:57Z' + - 'Ref A: 6D40A63F8CC54D8FA92E295344C7D388 Ref B: SG2AA1070304034 Ref C: 2025-11-13T07:42:52Z' x-powered-by: - ASP.NET status: @@ -6797,7 +6739,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+UpdatedKeyValue987654321 + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+set+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample+--key-value+UpdatedKeyValue987654321 response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -6808,7 +6750,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:00 GMT + - Thu, 13 Nov 2025 07:42:56 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -6837,11 +6779,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6855,7 +6797,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:02 GMT + - Thu, 13 Nov 2025 07:42:57 GMT expires: - '-1' pragma: @@ -6871,7 +6813,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 924392E18795427084880A4389767613 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:46:02Z' + - 'Ref A: 3EBC51E5F0494B87AD845CC7BE93D6F3 Ref B: SG2AA1070302062 Ref C: 2025-11-13T07:42:57Z' x-powered-by: - ASP.NET status: @@ -6894,11 +6836,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6912,7 +6854,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:02 GMT + - Thu, 13 Nov 2025 07:42:58 GMT expires: - '-1' pragma: @@ -6928,7 +6870,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E193993393474832941C48B4D3BB3C1E Ref B: PNQ231110908023 Ref C: 2025-11-12T07:46:02Z' + - 'Ref A: 9D1A803A6A3B4CF6B752E35989C0333D Ref B: SG2AA1070306029 Ref C: 2025-11-13T07:42:58Z' x-powered-by: - ASP.NET status: @@ -6951,12 +6893,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -6970,7 +6912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:02 GMT + - Thu, 13 Nov 2025 07:42:59 GMT expires: - '-1' pragma: @@ -6984,11 +6926,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/4557c737-d56a-4901-9fd1-d8031e439e01 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/2533ffce-f5f3-48ee-9b1e-ac18593e5333 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7EABE415CC39483FA15C22E58F49C777 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:46:02Z' + - 'Ref A: 63F882EACAF04099BE90818BE230290C Ref B: SG2AA1070305023 Ref C: 2025-11-13T07:42:59Z' x-powered-by: - ASP.NET status: @@ -7011,12 +6953,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=metadata-check"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec","debugEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=metadata-check"}]}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7030,7 +6972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:03 GMT + - Thu, 13 Nov 2025 07:43:00 GMT expires: - '-1' pragma: @@ -7044,11 +6986,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/420643b8-0ea9-4d1f-83f8-f18b482919d8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d1bef1ed-ce26-4809-a8f5-1006f3931d44 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BA2BF1362630473FA34AFEE589E9FBBD Ref B: PNQ231110909040 Ref C: 2025-11-12T07:46:03Z' + - 'Ref A: 36EFB1803C90410E9539A1FC9DA05E23 Ref B: SG2AA1070302036 Ref C: 2025-11-13T07:43:00Z' x-powered-by: - ASP.NET status: @@ -7073,10 +7015,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/getAuthToken?api-version=2025-10-02-preview response: body: - string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-12T08:46:03.6345366Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' + string: '{"location":"East US 2","properties":{"token":"***","expires":"2025-11-13T08:43:01.8012649Z"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps/accesstoken"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7090,7 +7032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:02 GMT + - Thu, 13 Nov 2025 07:43:00 GMT expires: - '-1' pragma: @@ -7104,13 +7046,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9ba0e694-7338-4827-a44f-e307f31f2f6f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/518a77e7-ccbc-46fd-be69-28be97617e02 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1CFECD1F181F4272B9DE7DCAE276DB70 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:46:03Z' + - 'Ref A: 6EB2E05EC0554F709090A200FD629487 Ref B: SG2AA1070306054 Ref C: 2025-11-13T07:43:01Z' x-powered-by: - ASP.NET status: @@ -7133,7 +7075,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample + uri: https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/debug?targetContainer=functionapp000003&command=%2Fbin%2Fazure-functions-admin+keys+show+--key-type+functionKey+--key-name+mycustomkey+--function-name+HttpExample response: body: string: '{"$id":"1","output":"{\n\"value\": {\n\"name\": \"mycustomkey\",\n\"value\": @@ -7144,7 +7086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:06 GMT + - Thu, 13 Nov 2025 07:43:05 GMT server: - Microsoft-IIS/10.0 transfer-encoding: @@ -7173,7 +7115,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-rg/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-rg/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group @@ -7186,7 +7128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:07 GMT + - Thu, 13 Nov 2025 07:43:07 GMT expires: - '-1' pragma: @@ -7200,7 +7142,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 0F5BD0AB84AC4836AFDE4D23D79E17EE Ref B: PNQ231110907052 Ref C: 2025-11-12T07:46:07Z' + - 'Ref A: 7E8D493F6499498C8FD7C1410DBE7B64 Ref B: SG2AA1070304052 Ref C: 2025-11-13T07:43:06Z' status: code: 404 message: Not Found @@ -7221,7 +7163,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' @@ -7235,7 +7177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:08 GMT + - Thu, 13 Nov 2025 07:43:07 GMT expires: - '-1' pragma: @@ -7249,7 +7191,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 61788E9302C5448E8B9F5702EE875441 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:46:08Z' + - 'Ref A: B73F8D8028DE4E17960503D05E4069F0 Ref B: SG2AA1070306036 Ref C: 2025-11-13T07:43:08Z' status: code: 404 message: Not Found @@ -7270,11 +7212,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7288,7 +7230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:10 GMT + - Thu, 13 Nov 2025 07:43:10 GMT expires: - '-1' pragma: @@ -7304,7 +7246,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7B6C7FE4A2544D91A6832546F2E31883 Ref B: PNQ231110909029 Ref C: 2025-11-12T07:46:09Z' + - 'Ref A: E141DFEC250C49A2B7CB99DD15A44E99 Ref B: SG2AA1070304052 Ref C: 2025-11-13T07:43:09Z' x-powered-by: - ASP.NET status: @@ -7327,11 +7269,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7345,7 +7287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:10 GMT + - Thu, 13 Nov 2025 07:43:10 GMT expires: - '-1' pragma: @@ -7361,7 +7303,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BC0A86AFD077472CB3A1B767932601CE Ref B: PNQ231110907036 Ref C: 2025-11-12T07:46:10Z' + - 'Ref A: 6EAF0059547B495DA4239AAFF606132C Ref B: SG2AA1070304040 Ref C: 2025-11-13T07:43:11Z' x-powered-by: - ASP.NET status: @@ -7384,12 +7326,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7403,7 +7345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:10 GMT + - Thu, 13 Nov 2025 07:43:12 GMT expires: - '-1' pragma: @@ -7417,11 +7359,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/dd73a0b9-c430-4b92-a0d7-7b5376f9fdb4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/3cdffbe1-4418-45d7-a9a1-2809c6efa2c2 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1AB104EF872B41A58AC2545507294693 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:46:11Z' + - 'Ref A: 9015C8EBCD774D59A00711B3686B8045 Ref B: SG2AA1070302052 Ref C: 2025-11-13T07:43:12Z' x-powered-by: - ASP.NET status: @@ -7444,11 +7386,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7462,7 +7404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:12 GMT + - Thu, 13 Nov 2025 07:43:13 GMT expires: - '-1' pragma: @@ -7478,7 +7420,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 535408145040496B8D7633E4AA970AE0 Ref B: PNQ231110908023 Ref C: 2025-11-12T07:46:12Z' + - 'Ref A: F0DECFC9E63E452AA3B4BA08FFC4B48A Ref B: SG2AA1070306025 Ref C: 2025-11-13T07:43:13Z' x-powered-by: - ASP.NET status: @@ -7501,11 +7443,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:44:02.6029435","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:44:02.6029435"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["20.161.153.68"],"latestRevisionName":"functionapp000003--1hxsyb6","latestReadyRevisionName":"functionapp000003--1hxsyb6","latestRevisionFqdn":"functionapp000003--1hxsyb6.jollybush-95ea47da.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.jollybush-95ea47da.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:40:29.0292485","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:40:29.0292485"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_v1_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-v1-eastus2","workloadProfileName":null,"patchingMode":"Automatic","outboundIpAddresses":["132.196.173.227"],"latestRevisionName":"functionapp000003--w23faon","latestReadyRevisionName":"functionapp000003--w23faon","latestRevisionFqdn":"functionapp000003--w23faon.happybay-3a5cf664.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.happybay-3a5cf664.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","env":[{"name":"AzureWebJobsStorage","value":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storageacc000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://storageacc000002.blob.core.windows.net/;FileEndpoint=https://storageacc000002.file.core.windows.net/;QueueEndpoint=https://storageacc000002.queue.core.windows.net/;TableEndpoint=https://storageacc000002.table.core.windows.net/"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7519,7 +7461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:12 GMT + - Thu, 13 Nov 2025 07:43:14 GMT expires: - '-1' pragma: @@ -7535,7 +7477,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 311BA92F92ED4C3C81F622F5888940B0 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:46:12Z' + - 'Ref A: 94644990049F467481F0D77C7AAF5640 Ref B: SG2AA1070306052 Ref C: 2025-11-13T07:43:14Z' x-powered-by: - ASP.NET status: @@ -7558,12 +7500,12 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas?api-version=2025-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz","name":"functionapp000003--1hxsyb6-744696d6bc-9dckz","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-12T07:44:10Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://db50dcaf0d05280f90b399accf36722c6a271356e95f4f9ce343bd94ef985fa2","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container - started at: 11/12/2025 7:44:16 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://571829a7f42d37c19ea2aa8cab9239ccfa6c4ad78ca43e60645b13ee1e379720","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container - was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--1hxsyb6/replicas/functionapp000003--1hxsyb6-744696d6bc-9dckz/containers/metadata-check/exec"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl","name":"functionapp000003--w23faon-7459649f7d-gwzwl","type":"Microsoft.App/containerapps/revisions/replicas","properties":{"createdTime":"2025-11-13T07:40:36Z","runningState":"Running","runningStateDetails":"","containers":[{"name":"functionapp000003","containerId":"containerd://034c39fd749b586fbe9bc533c9bc8844a8d234036ccc0e7091b7933ac0282e0e","ready":true,"started":true,"restartCount":0,"runningState":"Running","runningStateDetails":"Container + started at: 11/13/2025 7:40:41 AM.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/functionapp000003/exec"}],"initContainers":[{"name":"metadata-check","containerId":"containerd://dba2f3882c1dabc512fc72ee91242d551ed73e82a59ebc7253a37f7403a4b4df","ready":true,"started":false,"restartCount":0,"runningState":"Terminated","runningStateDetails":"Container + was terminated with reason: Completed, exit code: 0.","logStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/logstream","execEndpoint":"wss://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/revisions/functionapp000003--w23faon/replicas/functionapp000003--w23faon-7459649f7d-gwzwl/containers/metadata-check/exec"}]}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -7577,7 +7519,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:46:13 GMT + - Thu, 13 Nov 2025 07:43:14 GMT expires: - '-1' pragma: @@ -7591,11 +7533,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0f8cfa74-ad52-419e-807e-25149c3b9b72 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d3fae7f7-0aea-4285-ad8a-9de03a495aaf x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A746B1D3CF3C4C10AA3D383AFDBD6CB5 Ref B: PNQ231110908062 Ref C: 2025-11-12T07:46:12Z' + - 'Ref A: 4BEE77FE32294736AFDAFAEAB5F2691F Ref B: SG2AA1070304023 Ref C: 2025-11-13T07:43:15Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml index feab041b6a8..91f07b0ee32 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml @@ -329,7 +329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:39 GMT + - Thu, 13 Nov 2025 05:59:06 GMT expires: - '-1' pragma: @@ -343,7 +343,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 648CB5E49F40406B8C75EDBD4766E722 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:48:40Z' + - 'Ref A: 40DDAD9EEFF542EAA6D1E0822EA26556 Ref B: SG2AA1070303054 Ref C: 2025-11-13T05:59:06Z' status: code: 200 message: OK @@ -364,11 +364,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:27:12.0342405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:27:12.0342405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","staticIp":"135.224.187.152","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -378,11 +378,11 @@ interactions: cache-control: - no-cache content-length: - - '1795' + - '1798' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:40 GMT + - Thu, 13 Nov 2025 05:59:08 GMT expires: - '-1' pragma: @@ -398,7 +398,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EA4CA947970344CDBCB6843CB2F5E614 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:48:40Z' + - 'Ref A: D1CCB55BA6D64495808BCD61674C23CF Ref B: SG2AA1070302042 Ref C: 2025-11-13T05:59:07Z' x-powered-by: - ASP.NET status: @@ -734,7 +734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:42 GMT + - Thu, 13 Nov 2025 05:59:09 GMT expires: - '-1' pragma: @@ -748,7 +748,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0B6DC3560CB7408A95FCB2206EAA5EBE Ref B: PNQ231110906034 Ref C: 2025-11-12T07:48:42Z' + - 'Ref A: 8B12A82BDD514701B5A7FFBE0B796997 Ref B: SG2AA1070303029 Ref C: 2025-11-13T05:59:09Z' status: code: 200 message: OK @@ -769,11 +769,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:27:12.0342405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:27:12.0342405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","staticIp":"135.224.187.152","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -783,11 +783,11 @@ interactions: cache-control: - no-cache content-length: - - '1795' + - '1798' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:42 GMT + - Thu, 13 Nov 2025 05:59:10 GMT expires: - '-1' pragma: @@ -803,7 +803,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 252C34EA31DF4192A84E41A2427CA5E5 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:48:42Z' + - 'Ref A: 7D7EDCA264BB4ABB8B84EABBC0C01592 Ref B: SG2AA1070304040 Ref C: 2025-11-13T05:59:10Z' x-powered-by: - ASP.NET status: @@ -1139,7 +1139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:42 GMT + - Thu, 13 Nov 2025 05:59:11 GMT expires: - '-1' pragma: @@ -1153,7 +1153,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5CE46521F1A4434D82BB95EA5E35DA19 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:48:42Z' + - 'Ref A: 9A8E730AE11E4B2E8AB69C6AACD676B4 Ref B: SG2AA1070304036 Ref C: 2025-11-13T05:59:11Z' status: code: 200 message: OK @@ -1188,11 +1188,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T05:59:17.5949736Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T05:59:17.5949736Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.216.31"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1200,7 +1200,7 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986103587043693&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JT_tC-GTiLjNgKnigZJKMg7PR17c8pVltwgQ5ilykvbbo4sZf-v_aczOzJJfkl2relwGL4A-9qed4PMtrWE6hiJLJWAnm0m1IBPvKhfGuY9B0athF7hmoYwj0zalq0qQXA09-YieMbj16m_X66rn6jzBGQ6bX-nuhvXgpF9owz_RQ91EkZIHUvL75YRfmimXsmDJbbmvL3YI2dm5pVQt5RtMZNOULzfCQVpRCqQM8SOylupNgzIqARMSBpYS1KD8dQBI9gwPYC78PWgauuNeOrYR5H5k3axYw3NyhLOSvpT6nzYnM-YzhL0j6Hg1UZXhpw4BQQGgDeCJJ52uTeJLlQ&h=gT44qmWUX3bGeepkqCtROa52bYk7Co5iUlBXpYL2cPA cache-control: - no-cache content-length: @@ -1208,7 +1208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:43 GMT + - Thu, 13 Nov 2025 05:59:17 GMT expires: - '-1' pragma: @@ -1222,11 +1222,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/97946c61-0c01-467e-b2c1-0fbe3a80ba32 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/d9a49f89-90b4-4f6f-91a7-752e60a559fc x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: 3173E9F465EC4136811016AA007248CA Ref B: PNQ231110906040 Ref C: 2025-11-12T07:48:43Z' + - 'Ref A: 0046473846A14F3BA62A25C56F0F1B81 Ref B: SG2AA1070305031 Ref C: 2025-11-13T05:59:13Z' x-powered-by: - ASP.NET status: @@ -1249,10 +1249,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986103587043693&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JT_tC-GTiLjNgKnigZJKMg7PR17c8pVltwgQ5ilykvbbo4sZf-v_aczOzJJfkl2relwGL4A-9qed4PMtrWE6hiJLJWAnm0m1IBPvKhfGuY9B0athF7hmoYwj0zalq0qQXA09-YieMbj16m_X66rn6jzBGQ6bX-nuhvXgpF9owz_RQ91EkZIHUvL75YRfmimXsmDJbbmvL3YI2dm5pVQt5RtMZNOULzfCQVpRCqQM8SOylupNgzIqARMSBpYS1KD8dQBI9gwPYC78PWgauuNeOrYR5H5k3axYw3NyhLOSvpT6nzYnM-YzhL0j6Hg1UZXhpw4BQQGgDeCJJ52uTeJLlQ&h=gT44qmWUX3bGeepkqCtROa52bYk7Co5iUlBXpYL2cPA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68","name":"e51e6815-18db-4a83-81a0-c33516667c68","status":"InProgress","startTime":"2025-11-13T05:59:18.2835172"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1266,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:43 GMT + - Thu, 13 Nov 2025 05:59:19 GMT expires: - '-1' pragma: @@ -1280,11 +1280,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/acdbf4d0-5b43-4d66-8329-4d8e2ec04b72 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/malaysiasouth/8404fea5-57a2-430b-9934-b9365592b07f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8536EE349F24401BA4C14EE776D798DC Ref B: PNQ231110908031 Ref C: 2025-11-12T07:48:44Z' + - 'Ref A: 70609F8F654948FFB7C44A79A9AE2462 Ref B: SG2AA1070301054 Ref C: 2025-11-13T05:59:19Z' x-powered-by: - ASP.NET status: @@ -1307,10 +1307,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986103587043693&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JT_tC-GTiLjNgKnigZJKMg7PR17c8pVltwgQ5ilykvbbo4sZf-v_aczOzJJfkl2relwGL4A-9qed4PMtrWE6hiJLJWAnm0m1IBPvKhfGuY9B0athF7hmoYwj0zalq0qQXA09-YieMbj16m_X66rn6jzBGQ6bX-nuhvXgpF9owz_RQ91EkZIHUvL75YRfmimXsmDJbbmvL3YI2dm5pVQt5RtMZNOULzfCQVpRCqQM8SOylupNgzIqARMSBpYS1KD8dQBI9gwPYC78PWgauuNeOrYR5H5k3axYw3NyhLOSvpT6nzYnM-YzhL0j6Hg1UZXhpw4BQQGgDeCJJ52uTeJLlQ&h=gT44qmWUX3bGeepkqCtROa52bYk7Co5iUlBXpYL2cPA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68","name":"e51e6815-18db-4a83-81a0-c33516667c68","status":"InProgress","startTime":"2025-11-13T05:59:18.2835172"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1324,7 +1324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:46 GMT + - Thu, 13 Nov 2025 05:59:23 GMT expires: - '-1' pragma: @@ -1338,11 +1338,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7be4a11b-84e0-4cba-bfd1-c7e141af7b80 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/a124e817-e980-4d28-ae27-d0fb43753da9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2CE51E4E8D4D41089BBA971EFF928339 Ref B: PNQ231110906025 Ref C: 2025-11-12T07:48:46Z' + - 'Ref A: 9B8DFA22C1484FFB98A6473BDDF34F03 Ref B: SG2AA1070303040 Ref C: 2025-11-13T05:59:23Z' x-powered-by: - ASP.NET status: @@ -1365,10 +1365,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986103587043693&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JT_tC-GTiLjNgKnigZJKMg7PR17c8pVltwgQ5ilykvbbo4sZf-v_aczOzJJfkl2relwGL4A-9qed4PMtrWE6hiJLJWAnm0m1IBPvKhfGuY9B0athF7hmoYwj0zalq0qQXA09-YieMbj16m_X66rn6jzBGQ6bX-nuhvXgpF9owz_RQ91EkZIHUvL75YRfmimXsmDJbbmvL3YI2dm5pVQt5RtMZNOULzfCQVpRCqQM8SOylupNgzIqARMSBpYS1KD8dQBI9gwPYC78PWgauuNeOrYR5H5k3axYw3NyhLOSvpT6nzYnM-YzhL0j6Hg1UZXhpw4BQQGgDeCJJ52uTeJLlQ&h=gT44qmWUX3bGeepkqCtROa52bYk7Co5iUlBXpYL2cPA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68","name":"e51e6815-18db-4a83-81a0-c33516667c68","status":"InProgress","startTime":"2025-11-13T05:59:18.2835172"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1382,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:49 GMT + - Thu, 13 Nov 2025 05:59:26 GMT expires: - '-1' pragma: @@ -1396,127 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c0ee1d35-d949-4199-9908-3236fd31456d - x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' - x-msedge-ref: - - 'Ref A: BD3B9BE1A50B4F2B99C7ED9D987F5786 Ref B: PNQ231110906060 Ref C: 2025-11-12T07:48:49Z' - 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 --kind - User-Agent: - - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.80.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' - headers: - api-supported-versions: - - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '279' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Nov 2025 07:48:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/bbb6f8b9-c459-4f52-ba01-206f484b7180 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 931EDE960E564D098EE8550F0710E43F Ref B: PNQ231110906023 Ref C: 2025-11-12T07:48:51Z' - 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 --kind - User-Agent: - - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.80.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"InProgress","startTime":"2025-11-12T07:48:44.1548662"}' - headers: - api-supported-versions: - - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '279' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Nov 2025 07:48:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7c1b6cef-0a81-4b05-8fa9-7693a31d141e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/5455122d-82eb-46a2-baa3-bc58ef5a4632 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D73A3A4B09D9453DA8BD54AEAB0D8583 Ref B: PNQ231110907042 Ref C: 2025-11-12T07:48:54Z' + - 'Ref A: 821F05168D3F45EC8E1F0A1D8AD65F86 Ref B: SG2AA1070304036 Ref C: 2025-11-13T05:59:26Z' x-powered-by: - ASP.NET status: @@ -1539,10 +1423,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985305242093192&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=H0tz3NblRc1ixjDNULvm56EjjWNCkvJL7cRZmsqyoyTUUIWc8ExWHo5QeCBEsC7wipUmdiH91_r2nO5tYAhs-j6-123EXGaAoqZVSFdFmIUERBxuhQr9IX1YsyrINr06tMZzjxkw_rgLw8KMeN5zcRpuRwpULq8dGCdtY_LK5gxsQ0Vb5YeitMEQ3b_JJJri3kf2UeBaZmMF5tbLHYu_azMJPz4LaKBJMWZgIXbTLCxa4I2JB_6n7yIFG4D5b47T_2GZg_9LfbseWpySBiNUCPmrmypyYloURe8wIuV8nhpaEBV8aiKNUuUuqL0XuZbxa8aN7342fh3iTZ_CAMY1ag&h=P57HrbPraicJh7qHqSKSXra4CcRY2W2VHm47N-Q7BNo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986103587043693&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=JT_tC-GTiLjNgKnigZJKMg7PR17c8pVltwgQ5ilykvbbo4sZf-v_aczOzJJfkl2relwGL4A-9qed4PMtrWE6hiJLJWAnm0m1IBPvKhfGuY9B0athF7hmoYwj0zalq0qQXA09-YieMbj16m_X66rn6jzBGQ6bX-nuhvXgpF9owz_RQ91EkZIHUvL75YRfmimXsmDJbbmvL3YI2dm5pVQt5RtMZNOULzfCQVpRCqQM8SOylupNgzIqARMSBpYS1KD8dQBI9gwPYC78PWgauuNeOrYR5H5k3axYw3NyhLOSvpT6nzYnM-YzhL0j6Hg1UZXhpw4BQQGgDeCJJ52uTeJLlQ&h=gT44qmWUX3bGeepkqCtROa52bYk7Co5iUlBXpYL2cPA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d030fc52-dbe3-4335-bb75-bc92a427fe78","name":"d030fc52-dbe3-4335-bb75-bc92a427fe78","status":"Succeeded","startTime":"2025-11-12T07:48:44.1548662"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e51e6815-18db-4a83-81a0-c33516667c68","name":"e51e6815-18db-4a83-81a0-c33516667c68","status":"Succeeded","startTime":"2025-11-13T05:59:18.2835172"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1556,7 +1440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:57 GMT + - Thu, 13 Nov 2025 05:59:29 GMT expires: - '-1' pragma: @@ -1570,11 +1454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d6e14c18-5826-4336-8b0d-4267a339347f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/99a0a056-cf42-41a3-a15a-0cc56b880675 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ADF8E99BDC714DF49644736CD9E6F6D4 Ref B: PNQ231110907029 Ref C: 2025-11-12T07:48:57Z' + - 'Ref A: E2AE59358CD44F47A68BDD55A2B0125D Ref B: SG2AA1070303025 Ref C: 2025-11-13T05:59:29Z' x-powered-by: - ASP.NET status: @@ -1597,11 +1481,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T05:59:17.5949736","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T05:59:17.5949736"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.216.31"],"latestRevisionName":"containerapp000002--xevjyxl","latestReadyRevisionName":"containerapp000002--xevjyxl","latestRevisionFqdn":"containerapp000002--xevjyxl.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1611,11 +1495,11 @@ interactions: cache-control: - no-cache content-length: - - '3722' + - '3726' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:48:58 GMT + - Thu, 13 Nov 2025 05:59:31 GMT expires: - '-1' pragma: @@ -1631,7 +1515,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A6EF075DAC1A4ACF84493D110DF9BFCA Ref B: PNQ231110906060 Ref C: 2025-11-12T07:48:57Z' + - 'Ref A: FC67C9A6045F4680B4FBCB98B5B64951 Ref B: SG2AA1070302034 Ref C: 2025-11-13T05:59:30Z' x-powered-by: - ASP.NET status: @@ -1657,7 +1541,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun","name":"containerapp000002--xyz5uun","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T07:48:52+00:00","fqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xevjyxl","name":"containerapp000002--xevjyxl","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T05:59:24+00:00","fqdn":"containerapp000002--xevjyxl.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1667,11 +1551,11 @@ interactions: cache-control: - no-cache content-length: - - '962' + - '1036' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:49:29 GMT + - Thu, 13 Nov 2025 06:00:04 GMT expires: - '-1' pragma: @@ -1685,11 +1569,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/876c0102-03c8-4e62-96df-b10d9f6f2a00 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b3a73470-1851-47f6-a6ac-8fb42f9f286a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F9662FCE88D04DFEB4B100F666DC85FE Ref B: PNQ231110907036 Ref C: 2025-11-12T07:49:29Z' + - 'Ref A: D090794BF67849E18251469E6995BE1D Ref B: SG2AA1070304025 Ref C: 2025-11-13T06:00:03Z' x-powered-by: - ASP.NET status: @@ -1712,11 +1596,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T05:59:17.5949736","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T05:59:17.5949736"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--xevjyxl","latestReadyRevisionName":"containerapp000002--xevjyxl","latestRevisionFqdn":"containerapp000002--xevjyxl.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1726,11 +1610,11 @@ interactions: cache-control: - no-cache content-length: - - '3722' + - '3726' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:50:01 GMT + - Thu, 13 Nov 2025 06:00:35 GMT expires: - '-1' pragma: @@ -1746,7 +1630,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BCC9BBD354B74A1283915B1AFB1B1D49 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:50:01Z' + - 'Ref A: 4498D8EDC2B848CF9C47B77C08F14192 Ref B: SG2AA1070302034 Ref C: 2025-11-13T06:00:35Z' x-powered-by: - ASP.NET status: @@ -1769,11 +1653,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T05:59:17.5949736","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T05:59:17.5949736"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--xevjyxl","latestReadyRevisionName":"containerapp000002--xevjyxl","latestRevisionFqdn":"containerapp000002--xevjyxl.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1783,11 +1667,11 @@ interactions: cache-control: - no-cache content-length: - - '3722' + - '3726' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:50:02 GMT + - Thu, 13 Nov 2025 06:00:36 GMT expires: - '-1' pragma: @@ -1803,7 +1687,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6217402758144E868AD636C5BAD4BBAE Ref B: PNQ231110908034 Ref C: 2025-11-12T07:50:02Z' + - 'Ref A: F5AE4A9D0FD942F1A6A60AA304A6AD12 Ref B: SG2AA1070306023 Ref C: 2025-11-13T06:00:36Z' x-powered-by: - ASP.NET status: @@ -1826,21 +1710,21 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xevjyxl/functions?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xevjyxl/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '528' + - '530' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:50:01 GMT + - Thu, 13 Nov 2025 06:00:37 GMT expires: - '-1' pragma: @@ -1854,11 +1738,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/be62798e-ecb7-43c5-997a-c2739642d8a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e86b8f90-9c80-4eaf-bee3-662a061f431c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1393642CC902436C98A312D0D6682486 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:50:02Z' + - 'Ref A: AB614882F0264F649C78605281A8A636 Ref B: SG2AA1070306031 Ref C: 2025-11-13T06:00:37Z' x-powered-by: - ASP.NET status: @@ -1881,11 +1765,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T05:59:17.5949736","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T05:59:17.5949736"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--xevjyxl","latestReadyRevisionName":"containerapp000002--xevjyxl","latestRevisionFqdn":"containerapp000002--xevjyxl.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1895,11 +1779,11 @@ interactions: cache-control: - no-cache content-length: - - '3722' + - '3726' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:50:04 GMT + - Thu, 13 Nov 2025 06:00:39 GMT expires: - '-1' pragma: @@ -1915,7 +1799,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F1EC8BD077FD4BA98549D5DA9D3B7DF8 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:50:03Z' + - 'Ref A: 9E6A1C6CFBDD4DD19B8A32B72CB55A95 Ref B: SG2AA1070303036 Ref C: 2025-11-13T06:00:39Z' x-powered-by: - ASP.NET status: @@ -1938,11 +1822,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T07:48:44.1155766","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T07:48:44.1155766"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","128.85.213.51"],"latestRevisionName":"containerapp000002--xyz5uun","latestReadyRevisionName":"containerapp000002--xyz5uun","latestRevisionFqdn":"containerapp000002--xyz5uun.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T05:59:17.5949736","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T05:59:17.5949736"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--xevjyxl","latestReadyRevisionName":"containerapp000002--xevjyxl","latestRevisionFqdn":"containerapp000002--xevjyxl.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1952,11 +1836,11 @@ interactions: cache-control: - no-cache content-length: - - '3722' + - '3726' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:50:04 GMT + - Thu, 13 Nov 2025 06:00:41 GMT expires: - '-1' pragma: @@ -1972,7 +1856,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 395466CB376F40C2B7B7BD5261DB3377 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:50:04Z' + - 'Ref A: 5B2B6B109EA9410C9566C55EBD78FE6F Ref B: SG2AA1070302031 Ref C: 2025-11-13T06:00:40Z' x-powered-by: - ASP.NET status: @@ -1995,21 +1879,21 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions/HttpExample?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xevjyxl/functions/HttpExample?api-version=2025-10-02-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xyz5uun/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--xevjyxl/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://containerapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '516' + - '518' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 07:50:04 GMT + - Thu, 13 Nov 2025 06:00:41 GMT expires: - '-1' pragma: @@ -2023,11 +1907,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/688d1908-d6ba-4d00-9600-818714dadf39 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/50a20ccb-a749-47b3-a400-3ab469eff512 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 55FE8EEF172649428D7B4555890F134C Ref B: PNQ231110906060 Ref C: 2025-11-12T07:50:04Z' + - 'Ref A: 642F4AA35B1A49E68E70A3DA3816B854 Ref B: SG2AA1070303031 Ref C: 2025-11-13T06:00:41Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml index f2fc1f11532..f08b70ae296 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml @@ -329,7 +329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:07 GMT + - Thu, 13 Nov 2025 07:15:35 GMT expires: - '-1' pragma: @@ -343,7 +343,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 41C3EA7F31014C43A3B2A0294C596E19 Ref B: PNQ231110908036 Ref C: 2025-11-12T08:55:07Z' + - 'Ref A: FB1AE9331D624208A72D485D1372D4A0 Ref B: SG2AA1070302040 Ref C: 2025-11-13T07:15:35Z' status: code: 200 message: OK @@ -364,11 +364,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:27:12.0342405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:27:12.0342405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","staticIp":"135.224.187.152","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -378,11 +378,11 @@ interactions: cache-control: - no-cache content-length: - - '1795' + - '1798' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:08 GMT + - Thu, 13 Nov 2025 07:15:37 GMT expires: - '-1' pragma: @@ -398,7 +398,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7B0548C01413437BB162C391079809B2 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:55:07Z' + - 'Ref A: 0AAD2F463059469090FF20CD1139F2E9 Ref B: SG2AA1070306060 Ref C: 2025-11-13T07:15:36Z' x-powered-by: - ASP.NET status: @@ -734,7 +734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:09 GMT + - Thu, 13 Nov 2025 07:15:38 GMT expires: - '-1' pragma: @@ -748,7 +748,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 271A79F39FA94E3D981BC9C141300C57 Ref B: PNQ231110908025 Ref C: 2025-11-12T08:55:09Z' + - 'Ref A: B1934CA23101490F9B09785192581A99 Ref B: SG2AA1070306062 Ref C: 2025-11-13T07:15:39Z' status: code: 200 message: OK @@ -769,11 +769,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:27:12.0342405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:27:12.0342405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","staticIp":"135.224.187.152","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -783,11 +783,11 @@ interactions: cache-control: - no-cache content-length: - - '1795' + - '1798' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:09 GMT + - Thu, 13 Nov 2025 07:15:40 GMT expires: - '-1' pragma: @@ -803,7 +803,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D3F91667C7464F78851215F508289D19 Ref B: PNQ231110909034 Ref C: 2025-11-12T08:55:09Z' + - 'Ref A: B7D4C469EF0B45A5A26C97D56D375702 Ref B: SG2AA1070301060 Ref C: 2025-11-13T07:15:39Z' x-powered-by: - ASP.NET status: @@ -1139,7 +1139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:10 GMT + - Thu, 13 Nov 2025 07:15:40 GMT expires: - '-1' pragma: @@ -1153,7 +1153,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DB3FD6CED10D4B7E9648B8BF02290EA2 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:55:10Z' + - 'Ref A: A959E5AB0A6148C8862B374EE430755D Ref B: SG2AA1070305042 Ref C: 2025-11-13T07:15:41Z' status: code: 200 message: OK @@ -1188,11 +1188,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:15:47.6252577Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:15:47.6252577Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"CloudBuild","name":"containerapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1200,7 +1200,7 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986149487034877&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=d2191ChXnmnA5KZxxXkMdLyirbReXc9DeKCw-NFYqHwI2gZQ4_5oCCtY5vJcgR6gn4EttIeJRnX3jOX6NuKELCrLIxI5K29Ocwnj2NSzAWQWuut9kNrz9yP45HP9bhTNLidmiCC24n59I6COECUfDxkBOs86E-Ugw_dbJ_81UMcgmiK-VFM6SfHmfPck5dMDwJxIpRKPJjXdOexjWBHH_cW6tEmIqauBDDso88i-CeHuJCydtdw6hk7TZMeQjHUzASRpbM6864eud5Yo12YSvCCvv29RirZLoALULBqyCE6jhotsyM8otCegPLu05d6dg1MnPUsnTf0lPLwlC10iNQ&h=amSOd2Prnz-lzu670wdhSZ505Tp3EOSLcqWHNT7BxQ4 cache-control: - no-cache content-length: @@ -1208,7 +1208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:16 GMT + - Thu, 13 Nov 2025 07:15:47 GMT expires: - '-1' pragma: @@ -1222,11 +1222,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/db3ef768-c6a8-45f2-a1ea-5760fefeb524 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/bd5d0219-af48-46f2-98b0-5f0038415a65 x-ms-ratelimit-remaining-subscription-resource-requests: - - '799' + - '800' x-msedge-ref: - - 'Ref A: DEB266D2720045A79928FAA71872D010 Ref B: PNQ231110908031 Ref C: 2025-11-12T08:55:11Z' + - 'Ref A: 91CD0C19F975447AB6A063E2730B14FF Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:15:42Z' x-powered-by: - ASP.NET status: @@ -1249,10 +1249,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986149487034877&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=d2191ChXnmnA5KZxxXkMdLyirbReXc9DeKCw-NFYqHwI2gZQ4_5oCCtY5vJcgR6gn4EttIeJRnX3jOX6NuKELCrLIxI5K29Ocwnj2NSzAWQWuut9kNrz9yP45HP9bhTNLidmiCC24n59I6COECUfDxkBOs86E-Ugw_dbJ_81UMcgmiK-VFM6SfHmfPck5dMDwJxIpRKPJjXdOexjWBHH_cW6tEmIqauBDDso88i-CeHuJCydtdw6hk7TZMeQjHUzASRpbM6864eud5Yo12YSvCCvv29RirZLoALULBqyCE6jhotsyM8otCegPLu05d6dg1MnPUsnTf0lPLwlC10iNQ&h=amSOd2Prnz-lzu670wdhSZ505Tp3EOSLcqWHNT7BxQ4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52","name":"4616e21e-76b5-4a46-b531-f7415b00be52","status":"InProgress","startTime":"2025-11-13T07:15:48.2872086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1266,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:16 GMT + - Thu, 13 Nov 2025 07:15:49 GMT expires: - '-1' pragma: @@ -1280,11 +1280,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/e6b46ced-4bbd-49d1-bb66-50973742a2af + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/acd36141-b126-44e4-b331-a719a53c371a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 64A1F5400813465D8F0E58FCEC66366F Ref B: PNQ231110907040 Ref C: 2025-11-12T08:55:16Z' + - 'Ref A: 30C2269C89E241C798BB94CE79123073 Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:15:49Z' x-powered-by: - ASP.NET status: @@ -1307,10 +1307,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986149487034877&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=d2191ChXnmnA5KZxxXkMdLyirbReXc9DeKCw-NFYqHwI2gZQ4_5oCCtY5vJcgR6gn4EttIeJRnX3jOX6NuKELCrLIxI5K29Ocwnj2NSzAWQWuut9kNrz9yP45HP9bhTNLidmiCC24n59I6COECUfDxkBOs86E-Ugw_dbJ_81UMcgmiK-VFM6SfHmfPck5dMDwJxIpRKPJjXdOexjWBHH_cW6tEmIqauBDDso88i-CeHuJCydtdw6hk7TZMeQjHUzASRpbM6864eud5Yo12YSvCCvv29RirZLoALULBqyCE6jhotsyM8otCegPLu05d6dg1MnPUsnTf0lPLwlC10iNQ&h=amSOd2Prnz-lzu670wdhSZ505Tp3EOSLcqWHNT7BxQ4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52","name":"4616e21e-76b5-4a46-b531-f7415b00be52","status":"InProgress","startTime":"2025-11-13T07:15:48.2872086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1324,7 +1324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:19 GMT + - Thu, 13 Nov 2025 07:15:52 GMT expires: - '-1' pragma: @@ -1338,11 +1338,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d4141eae-b665-47d5-8209-ea51ae6d9359 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/bc07a800-c22b-4cde-ba59-14e4dea70a68 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7BC42E6420344E34912CE0803B3BE50F Ref B: PNQ231110908052 Ref C: 2025-11-12T08:55:20Z' + - 'Ref A: 0693BF839B54404EAC7C00802111D82D Ref B: SG2AA1070302034 Ref C: 2025-11-13T07:15:52Z' x-powered-by: - ASP.NET status: @@ -1365,10 +1365,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986149487034877&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=d2191ChXnmnA5KZxxXkMdLyirbReXc9DeKCw-NFYqHwI2gZQ4_5oCCtY5vJcgR6gn4EttIeJRnX3jOX6NuKELCrLIxI5K29Ocwnj2NSzAWQWuut9kNrz9yP45HP9bhTNLidmiCC24n59I6COECUfDxkBOs86E-Ugw_dbJ_81UMcgmiK-VFM6SfHmfPck5dMDwJxIpRKPJjXdOexjWBHH_cW6tEmIqauBDDso88i-CeHuJCydtdw6hk7TZMeQjHUzASRpbM6864eud5Yo12YSvCCvv29RirZLoALULBqyCE6jhotsyM8otCegPLu05d6dg1MnPUsnTf0lPLwlC10iNQ&h=amSOd2Prnz-lzu670wdhSZ505Tp3EOSLcqWHNT7BxQ4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52","name":"4616e21e-76b5-4a46-b531-f7415b00be52","status":"InProgress","startTime":"2025-11-13T07:15:48.2872086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1382,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:22 GMT + - Thu, 13 Nov 2025 07:15:55 GMT expires: - '-1' pragma: @@ -1396,11 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/264253b3-7c2b-47ca-8458-d5b77687472e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/1062afa4-8ca2-40ad-9de3-04c7c4a04e89 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A1081CDF3EA44EE8996E39BC7205A84D Ref B: PNQ231110909040 Ref C: 2025-11-12T08:55:22Z' + - 'Ref A: 995927FC3C3E42C89AB7375E08E14B5A Ref B: SG2AA1070304040 Ref C: 2025-11-13T07:15:55Z' x-powered-by: - ASP.NET status: @@ -1423,10 +1423,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986149487034877&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=d2191ChXnmnA5KZxxXkMdLyirbReXc9DeKCw-NFYqHwI2gZQ4_5oCCtY5vJcgR6gn4EttIeJRnX3jOX6NuKELCrLIxI5K29Ocwnj2NSzAWQWuut9kNrz9yP45HP9bhTNLidmiCC24n59I6COECUfDxkBOs86E-Ugw_dbJ_81UMcgmiK-VFM6SfHmfPck5dMDwJxIpRKPJjXdOexjWBHH_cW6tEmIqauBDDso88i-CeHuJCydtdw6hk7TZMeQjHUzASRpbM6864eud5Yo12YSvCCvv29RirZLoALULBqyCE6jhotsyM8otCegPLu05d6dg1MnPUsnTf0lPLwlC10iNQ&h=amSOd2Prnz-lzu670wdhSZ505Tp3EOSLcqWHNT7BxQ4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"InProgress","startTime":"2025-11-12T08:55:16.3819691"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52","name":"4616e21e-76b5-4a46-b531-f7415b00be52","status":"InProgress","startTime":"2025-11-13T07:15:48.2872086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1440,7 +1440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:25 GMT + - Thu, 13 Nov 2025 07:15:58 GMT expires: - '-1' pragma: @@ -1454,11 +1454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/f8da6aff-351b-4003-9780-59c0661b6cb5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/41c28bd2-d6a1-4dff-87c3-bd75a7c6cf60 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 269D52DB53E04417A56F4A260ABE140B Ref B: PNQ231110906031 Ref C: 2025-11-12T08:55:25Z' + - 'Ref A: 1C77E567FB8245E2B228F12C22646321 Ref B: SG2AA1070302036 Ref C: 2025-11-13T07:15:58Z' x-powered-by: - ASP.NET status: @@ -1481,10 +1481,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345167180393&c=MIIIrzCCBpegAwIBAgITUQFCmjDFW2ad-G6vagABAUKaMDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIzMTMyODI2WhcNMjYwNDIxMTMyODI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOuboi1dcXBvQvebjAWnATr4x0pBiJ_9Z5p_9sMApobamRIbVqAn0bWMbxKh4ZGZXWPkD_Z0tHf3HcwDV8HAtRb94yCmlJ91FdUPwdvearZ_p7x4hhAOMY6PMSui6rVU2onWK8cZIHGUJjpGyQdnoAZqokXu-Sh7NdGtzihCGhOqtGNRif_bUqIgsF6xXbK7ihVnoU5ielifEDYvAaIckyRys6btj7aexNQMm_KsR1ERcA31AQddvA12DH2voLLuz_yS_6fdqH07yLNqyB3ZhRrYaUTOJ1ntszxcTJ4NGCYcoHxg2qEx0sVbRqSWzReTB9ttPjV7mEsR8fsiLfYrVB0CAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUiSQhKXhpKn7Xg7zG2N38FkGays0wDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQBLyJ8Ui2iEMJU3hMEnAPrp5g1UE822y4j-WlOmNcv4RcPLuwaAB5ag3d4s0pXH2JflQreXuPdx_asdgqh4RVOPeQA10B2GhLH88ugNTreCho6QHshADGDfoTqoKUJobZWSZ5sRf20yLH-Huky7ZXlSr-unDGy416lIOi8sPLfezE8Nmvd8-uI6WhY037nbexRLG0ynX22sfDlaRKO3dshzC7RcMf5UeUMx7MqeryGNT5Oy-GzPhoXXotuxL6d6KENDTFpTtA8VnbEtAONH4-lhX-yqSgDlSU3PkMcsML9L8C0kdF_Yr9IlCvYMg5A9XxOT2F6W0NR6mms7ju-BNZpKt06mCjl09sAFUAwAYibeIpbXHGg9rZCCFqTjBqFJqrTcURhbOBsmOV1PUOlC4vBpyh6eqKwm9VtP9erCcQ0e20ojH0Yh5-An7Pp29KvETv7C7Va9pqX4SSqyBSCrDpc7lb_ZAKzd9PstLko-ZlIWNhyOVGr_4BzhaooprK8DZeEAgrkdGs3C69SF2OcZn9VQkbeV_tkvOxpRppWlIK5A4cllGt5uQIITli-MjzUGpaNJW-EztsIelC53QGU4hq0To6N990-6yz3P2xv7kW93lNUH-anM5KUpC1C_DCld_OTPlBL02kBshXYE5kwZJkmeXhyIUpCkTUc_YqaXuEIoTQ&s=jQXMlJHCTCLvFMofFRYjwOVZ1dwcMlbt0bGoFfhO68RDvX-_p8laamiu7EINsQL8hOhBEU9aSS_yXikGoLkJqFJKB8cfPenoOQk8IJte0BOYV9AUvJrkagm9DnlPYuJMy-WHVIHdFohxlHnbI06k0ojFw_W7FmL3XRkmVSoKsLSOZY5jJjM1zzxLnrXsUfBTGIOf_qLb9Et5cEldZQfxUU3aSDdSMGXh3wlIhOHGOdcw_abLzs6Nsc_3q35R2vDx5LsVV8JIn1wwSadn74v9R28tpcuwp5NXV7iUzYkGBroaVHfBIUNU7UskB1NBVvcRTVFpoludXz0JmXCj1OdcmA&h=9s2GQ44k-1pMpFphGkho6hvqBiWuKZY3TJLvY9-DsHc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986149487034877&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=d2191ChXnmnA5KZxxXkMdLyirbReXc9DeKCw-NFYqHwI2gZQ4_5oCCtY5vJcgR6gn4EttIeJRnX3jOX6NuKELCrLIxI5K29Ocwnj2NSzAWQWuut9kNrz9yP45HP9bhTNLidmiCC24n59I6COECUfDxkBOs86E-Ugw_dbJ_81UMcgmiK-VFM6SfHmfPck5dMDwJxIpRKPJjXdOexjWBHH_cW6tEmIqauBDDso88i-CeHuJCydtdw6hk7TZMeQjHUzASRpbM6864eud5Yo12YSvCCvv29RirZLoALULBqyCE6jhotsyM8otCegPLu05d6dg1MnPUsnTf0lPLwlC10iNQ&h=amSOd2Prnz-lzu670wdhSZ505Tp3EOSLcqWHNT7BxQ4 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2f9c638e-6114-43e6-93a7-2ed08a12d18f","name":"2f9c638e-6114-43e6-93a7-2ed08a12d18f","status":"Succeeded","startTime":"2025-11-12T08:55:16.3819691"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4616e21e-76b5-4a46-b531-f7415b00be52","name":"4616e21e-76b5-4a46-b531-f7415b00be52","status":"Succeeded","startTime":"2025-11-13T07:15:48.2872086"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1498,7 +1498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:27 GMT + - Thu, 13 Nov 2025 07:16:01 GMT expires: - '-1' pragma: @@ -1512,11 +1512,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/ba766d8d-8635-488a-96ff-e1a4a89aa454 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/24f7cd30-2ef5-47f3-af47-991469418bc9 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 509C8699BB464C8A872B196B8C71FCDE Ref B: PNQ231110907054 Ref C: 2025-11-12T08:55:27Z' + - 'Ref A: 99F9A8AF67CF4B39BA880362C95960B6 Ref B: SG2AA1070304036 Ref C: 2025-11-13T07:16:01Z' x-powered-by: - ASP.NET status: @@ -1539,11 +1539,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:15:47.6252577","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:15:47.6252577"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--fj1wblg","latestReadyRevisionName":"containerapp000002--fj1wblg","latestRevisionFqdn":"containerapp000002--fj1wblg.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1553,11 +1553,11 @@ interactions: cache-control: - no-cache content-length: - - '3699' + - '3703' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:55:28 GMT + - Thu, 13 Nov 2025 07:16:03 GMT expires: - '-1' pragma: @@ -1573,7 +1573,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1E953B798B9C4AF9A26EDAB153659EFE Ref B: PNQ231110906023 Ref C: 2025-11-12T08:55:27Z' + - 'Ref A: F1E8B7CFE7FA443AA6F1840E6E4196AC Ref B: SG2AA1070302029 Ref C: 2025-11-13T07:16:03Z' x-powered-by: - ASP.NET status: @@ -1909,7 +1909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:09 GMT + - Thu, 13 Nov 2025 07:16:44 GMT expires: - '-1' pragma: @@ -1923,7 +1923,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FEA8944EF74744148807B6659AB57F7C Ref B: PNQ231110906034 Ref C: 2025-11-12T08:56:09Z' + - 'Ref A: B9D151BC55464368941099041AE1726C Ref B: SG2AA1070301036 Ref C: 2025-11-13T07:16:45Z' status: code: 200 message: OK @@ -1944,11 +1944,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:27:12.0342405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:27:12.0342405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","staticIp":"135.224.187.152","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1958,11 +1958,11 @@ interactions: cache-control: - no-cache content-length: - - '1795' + - '1798' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:10 GMT + - Thu, 13 Nov 2025 07:16:46 GMT expires: - '-1' pragma: @@ -1978,7 +1978,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C14884637D3C4FB087F7D095A96D8164 Ref B: PNQ231110907062 Ref C: 2025-11-12T08:56:10Z' + - 'Ref A: 078A5F6AA4E44A829E6569289C3FF5AE Ref B: SG2AA1070305062 Ref C: 2025-11-13T07:16:46Z' x-powered-by: - ASP.NET status: @@ -2314,7 +2314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:11 GMT + - Thu, 13 Nov 2025 07:16:47 GMT expires: - '-1' pragma: @@ -2328,7 +2328,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8C5248B46C09430DAC1EE6FD9B5A9A5F Ref B: PNQ231110906062 Ref C: 2025-11-12T08:56:11Z' + - 'Ref A: 366F5C1524534230AE2339EDE4EEB202 Ref B: SG2AA1070304054 Ref C: 2025-11-13T07:16:47Z' status: code: 200 message: OK @@ -2363,11 +2363,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:16:53.2905179Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:16:53.2905179Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"CloudBuild","name":"functionapp000003"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2375,7 +2375,7 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986150143675036&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=DPJBdOoSj1iC5SYuR52kb5L6H5asQ7Lbx9xPMMMhLKYAUVQKAiqBFSur5g63o6SjRsLe9YFxkof0d4wzxCxndQ5n8tjHsPn26sstNCw3oQyKigRdQuChrA1fFntagMmpLTxqyX8bTk0i41NLZe6R2NI4BuhWTx0C8zl12sjtirhPzCGcK-FnbnRAzezO3jajKHt1ZQ8NH0G2Fh4cRqglMqhOfSD4fx2h0P2WKPmlA1ZRVZY4Kd05YMc_mU0bPirXHNR21cgw2N8DN_x-5EVhDy4J7xU0PKBJKgJas6Z37NJ0V5dXmV-LZVChodTgfGAO8rjDVkwxMxZsW84fRJH6PA&h=XyRTMmI2uKxH5lk6jjKT8LPXpYbVOT-S9oVYLRSUm20 cache-control: - no-cache content-length: @@ -2383,7 +2383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:15 GMT + - Thu, 13 Nov 2025 07:16:54 GMT expires: - '-1' pragma: @@ -2397,11 +2397,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/03048996-628a-4170-95a6-a2f87aa062c4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/04962477-5648-45ae-8608-794f5dbc9c2f x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: B622B4D669C04AE3868D112295C06BFF Ref B: PNQ231110907025 Ref C: 2025-11-12T08:56:11Z' + - 'Ref A: 994A6213AE7B4CD8A4C7098DCAE08A1A Ref B: SG2AA1070305023 Ref C: 2025-11-13T07:16:48Z' x-powered-by: - ASP.NET status: @@ -2424,10 +2424,68 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986150143675036&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=DPJBdOoSj1iC5SYuR52kb5L6H5asQ7Lbx9xPMMMhLKYAUVQKAiqBFSur5g63o6SjRsLe9YFxkof0d4wzxCxndQ5n8tjHsPn26sstNCw3oQyKigRdQuChrA1fFntagMmpLTxqyX8bTk0i41NLZe6R2NI4BuhWTx0C8zl12sjtirhPzCGcK-FnbnRAzezO3jajKHt1ZQ8NH0G2Fh4cRqglMqhOfSD4fx2h0P2WKPmlA1ZRVZY4Kd05YMc_mU0bPirXHNR21cgw2N8DN_x-5EVhDy4J7xU0PKBJKgJas6Z37NJ0V5dXmV-LZVChodTgfGAO8rjDVkwxMxZsW84fRJH6PA&h=XyRTMmI2uKxH5lk6jjKT8LPXpYbVOT-S9oVYLRSUm20 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179","name":"a3e11ed5-e1ba-4f57-9efd-dc152ee97179","status":"InProgress","startTime":"2025-11-13T07:16:53.9433496"}' + headers: + api-supported-versions: + - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, + 2025-07-01, 2025-10-02-preview, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 13 Nov 2025 07:16:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/36116e0d-79bb-4da1-9b80-527bc86d66b0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 7165C2BEECBA452CA503AFCE0325FE25 Ref B: SG2AA1070303025 Ref C: 2025-11-13T07:16:54Z' + 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 --kind + User-Agent: + - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) + AZURECLI/2.80.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986150143675036&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=DPJBdOoSj1iC5SYuR52kb5L6H5asQ7Lbx9xPMMMhLKYAUVQKAiqBFSur5g63o6SjRsLe9YFxkof0d4wzxCxndQ5n8tjHsPn26sstNCw3oQyKigRdQuChrA1fFntagMmpLTxqyX8bTk0i41NLZe6R2NI4BuhWTx0C8zl12sjtirhPzCGcK-FnbnRAzezO3jajKHt1ZQ8NH0G2Fh4cRqglMqhOfSD4fx2h0P2WKPmlA1ZRVZY4Kd05YMc_mU0bPirXHNR21cgw2N8DN_x-5EVhDy4J7xU0PKBJKgJas6Z37NJ0V5dXmV-LZVChodTgfGAO8rjDVkwxMxZsW84fRJH6PA&h=XyRTMmI2uKxH5lk6jjKT8LPXpYbVOT-S9oVYLRSUm20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"InProgress","startTime":"2025-11-12T08:56:15.9035945"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179","name":"a3e11ed5-e1ba-4f57-9efd-dc152ee97179","status":"InProgress","startTime":"2025-11-13T07:16:53.9433496"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2441,7 +2499,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:15 GMT + - Thu, 13 Nov 2025 07:16:58 GMT expires: - '-1' pragma: @@ -2455,11 +2513,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d3f0f870-e529-4162-8cbb-c1ef41b987df + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d43b6038-b741-42ab-badd-773c0b6221cc x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8DF811D83259472089D7650330CB5479 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:56:16Z' + - 'Ref A: 02FD9429C9B34DC8A9A8BC2B3FA8035E Ref B: SG2AA1070306034 Ref C: 2025-11-13T07:16:58Z' x-powered-by: - ASP.NET status: @@ -2482,10 +2540,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986150143675036&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=DPJBdOoSj1iC5SYuR52kb5L6H5asQ7Lbx9xPMMMhLKYAUVQKAiqBFSur5g63o6SjRsLe9YFxkof0d4wzxCxndQ5n8tjHsPn26sstNCw3oQyKigRdQuChrA1fFntagMmpLTxqyX8bTk0i41NLZe6R2NI4BuhWTx0C8zl12sjtirhPzCGcK-FnbnRAzezO3jajKHt1ZQ8NH0G2Fh4cRqglMqhOfSD4fx2h0P2WKPmlA1ZRVZY4Kd05YMc_mU0bPirXHNR21cgw2N8DN_x-5EVhDy4J7xU0PKBJKgJas6Z37NJ0V5dXmV-LZVChodTgfGAO8rjDVkwxMxZsW84fRJH6PA&h=XyRTMmI2uKxH5lk6jjKT8LPXpYbVOT-S9oVYLRSUm20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"InProgress","startTime":"2025-11-12T08:56:15.9035945"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179","name":"a3e11ed5-e1ba-4f57-9efd-dc152ee97179","status":"InProgress","startTime":"2025-11-13T07:16:53.9433496"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2499,7 +2557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:19 GMT + - Thu, 13 Nov 2025 07:17:01 GMT expires: - '-1' pragma: @@ -2513,11 +2571,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/c0757da4-4089-4730-b6bf-8ad5fda06249 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/a292f465-998c-4902-b8f7-87a46274102b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 673E5196257A446487C0C112805DBB8F Ref B: PNQ231110909052 Ref C: 2025-11-12T08:56:19Z' + - 'Ref A: DA66037752B04DC7A4FFAC73431BF312 Ref B: SG2AA1070304042 Ref C: 2025-11-13T07:17:01Z' x-powered-by: - ASP.NET status: @@ -2540,10 +2598,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986150143675036&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=DPJBdOoSj1iC5SYuR52kb5L6H5asQ7Lbx9xPMMMhLKYAUVQKAiqBFSur5g63o6SjRsLe9YFxkof0d4wzxCxndQ5n8tjHsPn26sstNCw3oQyKigRdQuChrA1fFntagMmpLTxqyX8bTk0i41NLZe6R2NI4BuhWTx0C8zl12sjtirhPzCGcK-FnbnRAzezO3jajKHt1ZQ8NH0G2Fh4cRqglMqhOfSD4fx2h0P2WKPmlA1ZRVZY4Kd05YMc_mU0bPirXHNR21cgw2N8DN_x-5EVhDy4J7xU0PKBJKgJas6Z37NJ0V5dXmV-LZVChodTgfGAO8rjDVkwxMxZsW84fRJH6PA&h=XyRTMmI2uKxH5lk6jjKT8LPXpYbVOT-S9oVYLRSUm20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"InProgress","startTime":"2025-11-12T08:56:15.9035945"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179","name":"a3e11ed5-e1ba-4f57-9efd-dc152ee97179","status":"InProgress","startTime":"2025-11-13T07:16:53.9433496"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2557,7 +2615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:23 GMT + - Thu, 13 Nov 2025 07:17:04 GMT expires: - '-1' pragma: @@ -2571,11 +2629,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/058c067c-c2aa-49a2-ae69-20a71acd9066 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/1235ed91-8695-4d8e-8b48-729a831ee4fb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5B22710B58604A959B35246C775CA6D0 Ref B: PNQ231110908062 Ref C: 2025-11-12T08:56:22Z' + - 'Ref A: FAB3D6D9037A48698EE96A39749EDA44 Ref B: SG2AA1070302025 Ref C: 2025-11-13T07:17:04Z' x-powered-by: - ASP.NET status: @@ -2598,10 +2656,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985345763634209&c=MIIIrzCCBpegAwIBAgITUQE-kX1xp1ObWd_PxAABAT6RfTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIxMDc0ODE0WhcNMjYwNDE5MDc0ODE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrsDIUzYiILHemm4ayPV0Unzi4NeZNcZIh_Y1bCycTOCTp5pi5MDsuE6qjPdOJt61d6Lqhn7iwFcOuGlZa0qrlGXfrSYxR_ogUWOutXgLKe2PBi_PCmuEiW_raI6KqHHSDoUH-FhYH9SDcC0fJM_i6NvFUXz-yJ1TPbbqljBcUIOOYXBi6eRIxC09TF3_UAW6ccn1_OoGIwDrEk_G2jUs9SH3D2lv-oVoX7CE8NIXu4rJ4pOtjVaYbNQa2OOqxTZ2kW4FfMx3zxaCWeWnX3-DozfPmKziKns4f19fiU0T2by9bPUGa8P_Htkl4LT6csoXcwrfn6BJy1aFH0LVvbDtUCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUSKnVRwlmMozgVHAi2TN21xXT37YwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQCiWqQeCyhYkcNaJ3y-LAa0RddonEPcu5NC8A7s_9V8LILn9O6fc-E3Le9QthZdWBCGMVyfWSoRYphiqafWOpZoRpDePDfm41VnFvMazRsJzV8XFyBTEK7KTd5VtNx-5r8PyO44spqpmghxIt2foVY9u9k38PmH-g4bUD4j_nYAmaUglaa2cA15eBJMCnZZ2r4-Y_ZPFc5cZ_QUI7Grvu61qHB-Nh0onfhWMtMzWdxNnoHhuyUvlH9p10tDfJLoZIs9To-nrGde7JqOJpKFcGE9YZLbyXpfK_KCI5fxoJyoTBr6F_R4OQXq0a3iQfffhEW28SsHRmktQrkddzfXT5HozvEXIJH9hxPfcqGDTuTweb-LWAFXS-sWesfnVzONpwSc5OkG70kVx6UmJdx_ynWO656xf9IbgCDuZATwqm9hJbR5xCcw_kCVy2d36hVJhGkn5OF2-nlm-PgZQxNzHy2rLKJFqjNI5NZVDyg9rjAv0Y8dp3iPdk-otC8T-SYOAq98fEx3aYn4WACY-lT3rNHlhHEHMP9DPBZJdfgzWuYbVpv-EM9VHQUSLmMN0rxfB13hJN7sME1eFU7iOUTsQsU4R5XgVg9Gu39eV4n8ndged_2WOhOOWxAeuVWTELphrX0N5Ne7xmOaC9xm_kGT7Ft1MEvFkITz7uzN331qth394g&s=KZJ1jGppF9Ki2IwYgxX3vWjegHHMpbgKtXRS1GSFb7XylkR4B-elTtrkYwSfPfHTiA3id_kc6T5b2GjlDYd-rWa50T1PybTklrP6fRclj13FMnGeD5V-7y7RU4Ap3kP_mnbcHGEJu7OtRv9oaE4JSWZw4wAVd5A50PuPhmXwkRkwr_-zBCB9KzIciPXFnvMVjBKtRD6joQbpgH4Ukdaa0aOvpmDciZzyvwhg6axmJ__umn9am8EfyRpYZqNyDPwfstgPoNVojwEP6-Owb8yuJNPyP11IS0Y4QxUe-XR9snzBM-9bmZHgqv0ZGCn_7prfV6FJZuHkHTxj_QmhXtkWyQ&h=5TkiwMem-5E7OG290dBr9MQXGs26EFXq2d8b0eLaEbs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986150143675036&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=DPJBdOoSj1iC5SYuR52kb5L6H5asQ7Lbx9xPMMMhLKYAUVQKAiqBFSur5g63o6SjRsLe9YFxkof0d4wzxCxndQ5n8tjHsPn26sstNCw3oQyKigRdQuChrA1fFntagMmpLTxqyX8bTk0i41NLZe6R2NI4BuhWTx0C8zl12sjtirhPzCGcK-FnbnRAzezO3jajKHt1ZQ8NH0G2Fh4cRqglMqhOfSD4fx2h0P2WKPmlA1ZRVZY4Kd05YMc_mU0bPirXHNR21cgw2N8DN_x-5EVhDy4J7xU0PKBJKgJas6Z37NJ0V5dXmV-LZVChodTgfGAO8rjDVkwxMxZsW84fRJH6PA&h=XyRTMmI2uKxH5lk6jjKT8LPXpYbVOT-S9oVYLRSUm20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/99b423f0-54b8-4d42-bf45-7c4285a9611e","name":"99b423f0-54b8-4d42-bf45-7c4285a9611e","status":"Succeeded","startTime":"2025-11-12T08:56:15.9035945"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a3e11ed5-e1ba-4f57-9efd-dc152ee97179","name":"a3e11ed5-e1ba-4f57-9efd-dc152ee97179","status":"Succeeded","startTime":"2025-11-13T07:16:53.9433496"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2615,7 +2673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:27 GMT + - Thu, 13 Nov 2025 07:17:08 GMT expires: - '-1' pragma: @@ -2629,11 +2687,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/jioindiawest/f2f5938b-9e72-4145-87b4-a11dbadb9bc2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/a22e3389-9b64-4a11-bce4-bf9036127248 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CAC30822C8144EDAB60187CD6C9909D8 Ref B: PNQ231110909060 Ref C: 2025-11-12T08:56:26Z' + - 'Ref A: 7CF4AB6F49D1417FB774895D071A1E07 Ref B: SG2AA1070305023 Ref C: 2025-11-13T07:17:07Z' x-powered-by: - ASP.NET status: @@ -2656,11 +2714,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:16:53.2905179","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:16:53.2905179"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"functionapp000003--11wtrd9","latestReadyRevisionName":"functionapp000003--11wtrd9","latestRevisionFqdn":"functionapp000003--11wtrd9.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2670,11 +2728,11 @@ interactions: cache-control: - no-cache content-length: - - '3714' + - '3718' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:56:28 GMT + - Thu, 13 Nov 2025 07:17:08 GMT expires: - '-1' pragma: @@ -2690,7 +2748,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 75C2BC888ACA4D59855FD3C8ABD81CEA Ref B: PNQ231110906034 Ref C: 2025-11-12T08:56:28Z' + - 'Ref A: 2B64F8B9681042E286AE0E59904670B9 Ref B: SG2AA1070303029 Ref C: 2025-11-13T07:17:09Z' x-powered-by: - ASP.NET status: @@ -2716,7 +2774,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--d9goxjg","name":"containerapp000002--d9goxjg","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:55:22+00:00","fqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002/revisions/containerapp000002--fj1wblg","name":"containerapp000002--fj1wblg","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:15:54+00:00","fqdn":"containerapp000002--fj1wblg.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2726,11 +2784,11 @@ interactions: cache-control: - no-cache content-length: - - '960' + - '962' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:30 GMT + - Thu, 13 Nov 2025 07:18:11 GMT expires: - '-1' pragma: @@ -2744,11 +2802,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/88f96fb5-0423-4da7-99e1-a97a2957d697 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/94041689-ee8c-4143-b0b9-a9762702513a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A5295ED89930442195F1B9DD46A8A260 Ref B: PNQ231110908042 Ref C: 2025-11-12T08:57:29Z' + - 'Ref A: B84B28A735D348ACB0DC562C9BF211A9 Ref B: SG2AA1070302060 Ref C: 2025-11-13T07:18:10Z' x-powered-by: - ASP.NET status: @@ -2774,7 +2832,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--w234j82","name":"functionapp000003--w234j82","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:56:22+00:00","fqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003/revisions/functionapp000003--11wtrd9","name":"functionapp000003--11wtrd9","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:16:59+00:00","fqdn":"functionapp000003--11wtrd9.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"functionapp000003","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2784,11 +2842,11 @@ interactions: cache-control: - no-cache content-length: - - '1029' + - '1031' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:32 GMT + - Thu, 13 Nov 2025 07:18:14 GMT expires: - '-1' pragma: @@ -2802,11 +2860,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ed7562ca-3b24-4fec-99d9-4d65e5d80a02 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/b3552fac-cafc-4f8f-a242-269ed099db45 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6EAF53293A7241499E1516221EA09AD9 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:57:31Z' + - 'Ref A: DCB6D7D9909C466D9651F1C0E6A53E37 Ref B: SG2AA1070304054 Ref C: 2025-11-13T07:18:13Z' x-powered-by: - ASP.NET status: @@ -2829,11 +2887,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:15:47.6252577","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:15:47.6252577"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--fj1wblg","latestReadyRevisionName":"containerapp000002--fj1wblg","latestRevisionFqdn":"containerapp000002--fj1wblg.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2843,11 +2901,11 @@ interactions: cache-control: - no-cache content-length: - - '3699' + - '3703' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:32 GMT + - Thu, 13 Nov 2025 07:18:15 GMT expires: - '-1' pragma: @@ -2863,7 +2921,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3246EFB9F38D4175BD1D3E2E20003256 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:33Z' + - 'Ref A: 30F6049A75F34C47A5076F423BAF5740 Ref B: SG2AA1070302034 Ref C: 2025-11-13T07:18:15Z' x-powered-by: - ASP.NET status: @@ -2886,11 +2944,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:15:47.6252577","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:15:47.6252577"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--fj1wblg","latestReadyRevisionName":"containerapp000002--fj1wblg","latestRevisionFqdn":"containerapp000002--fj1wblg.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2900,11 +2958,11 @@ interactions: cache-control: - no-cache content-length: - - '3699' + - '3703' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:32 GMT + - Thu, 13 Nov 2025 07:18:16 GMT expires: - '-1' pragma: @@ -2920,7 +2978,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 89B12CF13A99409D9A59E14AB66A3917 Ref B: PNQ231110907034 Ref C: 2025-11-12T08:57:33Z' + - 'Ref A: 03DE7B1C42B146CBB57B4991B6CF5E07 Ref B: SG2AA1070304034 Ref C: 2025-11-13T07:18:16Z' x-powered-by: - ASP.NET status: @@ -2943,7 +3001,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' @@ -2957,7 +3015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:34 GMT + - Thu, 13 Nov 2025 07:18:17 GMT expires: - '-1' pragma: @@ -2971,7 +3029,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: D23ADDA0C1434197B712C95E1AC5D4BF Ref B: PNQ231110906042 Ref C: 2025-11-12T08:57:34Z' + - 'Ref A: 4EA77D823DC94BA69A16E87C1D15F3C8 Ref B: SG2AA1070303060 Ref C: 2025-11-13T07:18:17Z' status: code: 404 message: Not Found @@ -2992,7 +3050,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group @@ -3005,7 +3063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:34 GMT + - Thu, 13 Nov 2025 07:18:18 GMT expires: - '-1' pragma: @@ -3019,7 +3077,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: 3CA57ECFB53C4F26B9CD3C2C9861C4DA Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:35Z' + - 'Ref A: FDBA04CED0D7414E992E5BD9E8A09F6B Ref B: SG2AA1070303042 Ref C: 2025-11-13T07:18:19Z' status: code: 404 message: Not Found @@ -3040,11 +3098,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:16:53.2905179","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:16:53.2905179"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"functionapp000003--11wtrd9","latestReadyRevisionName":"functionapp000003--11wtrd9","latestRevisionFqdn":"functionapp000003--11wtrd9.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3054,11 +3112,11 @@ interactions: cache-control: - no-cache content-length: - - '3714' + - '3718' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:36 GMT + - Thu, 13 Nov 2025 07:18:20 GMT expires: - '-1' pragma: @@ -3074,7 +3132,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8AA06FDDF40E49118926D505408CCEEC Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:36Z' + - 'Ref A: 7C9148EA126B403B8073DA6BFD8DACA0 Ref B: SG2AA1070302036 Ref C: 2025-11-13T07:18:20Z' x-powered-by: - ASP.NET status: @@ -3097,11 +3155,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:16:53.2905179","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:16:53.2905179"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"functionapp000003--11wtrd9","latestReadyRevisionName":"functionapp000003--11wtrd9","latestRevisionFqdn":"functionapp000003--11wtrd9.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3111,11 +3169,11 @@ interactions: cache-control: - no-cache content-length: - - '3714' + - '3718' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:37 GMT + - Thu, 13 Nov 2025 07:18:20 GMT expires: - '-1' pragma: @@ -3131,7 +3189,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 080AF4A2D43C41DBB2BC71F020B60212 Ref B: PNQ231110908036 Ref C: 2025-11-12T08:57:37Z' + - 'Ref A: D4C0C80D27FF4D749CCD0DAFAD0DAC9E Ref B: SG2AA1070306023 Ref C: 2025-11-13T07:18:21Z' x-powered-by: - ASP.NET status: @@ -3169,7 +3227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:38 GMT + - Thu, 13 Nov 2025 07:18:21 GMT expires: - '-1' pragma: @@ -3183,11 +3241,11 @@ interactions: x-ms-failure-cause: - service x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/31e82d28-d831-46a1-8941-fdb757e6fc3d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/26902db2-3213-42d0-838f-fcbf4bb99ad7 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 78707EF4AE8B454F92EC17AF9626368F Ref B: PNQ231110906031 Ref C: 2025-11-12T08:57:38Z' + - 'Ref A: C01F13A099F34211BEFB6648CD143BBD Ref B: SG2AA1070304029 Ref C: 2025-11-13T07:18:22Z' x-powered-by: - ASP.NET status: @@ -3210,11 +3268,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:15:47.6252577","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:15:47.6252577"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--fj1wblg","latestReadyRevisionName":"containerapp000002--fj1wblg","latestRevisionFqdn":"containerapp000002--fj1wblg.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3224,11 +3282,11 @@ interactions: cache-control: - no-cache content-length: - - '3699' + - '3703' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:38 GMT + - Thu, 13 Nov 2025 07:18:23 GMT expires: - '-1' pragma: @@ -3244,7 +3302,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B201382771454E058F3271B9073B479D Ref B: PNQ231110908052 Ref C: 2025-11-12T08:57:39Z' + - 'Ref A: 9E167FDB20DF4BEA9448163BE005CFB6 Ref B: SG2AA1070303034 Ref C: 2025-11-13T07:18:23Z' x-powered-by: - ASP.NET status: @@ -3267,11 +3325,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp000002","name":"containerapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:55:16.2336557","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:55:16.2336557"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"containerapp000002--d9goxjg","latestReadyRevisionName":"containerapp000002--d9goxjg","latestRevisionFqdn":"containerapp000002--d9goxjg.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:15:47.6252577","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:15:47.6252577"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"containerapp000002--fj1wblg","latestReadyRevisionName":"containerapp000002--fj1wblg","latestRevisionFqdn":"containerapp000002--fj1wblg.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"containerapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","imageType":"ContainerImage","name":"containerapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/containerapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3281,11 +3339,11 @@ interactions: cache-control: - no-cache content-length: - - '3699' + - '3703' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:39 GMT + - Thu, 13 Nov 2025 07:18:23 GMT expires: - '-1' pragma: @@ -3301,7 +3359,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 38F7C23CF0D14E1B8ABB49CF0A6584DE Ref B: PNQ231110909040 Ref C: 2025-11-12T08:57:39Z' + - 'Ref A: CF60D870175D48DA9A278B45DF590B86 Ref B: SG2AA1070305054 Ref C: 2025-11-13T07:18:24Z' x-powered-by: - ASP.NET status: @@ -3324,7 +3382,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nonexistent-resource-group/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group @@ -3337,7 +3395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:40 GMT + - Thu, 13 Nov 2025 07:18:25 GMT expires: - '-1' pragma: @@ -3351,7 +3409,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: CB20158E8EC6442EB82E4896C821A231 Ref B: PNQ231110907025 Ref C: 2025-11-12T08:57:40Z' + - 'Ref A: 165CCF9213094D45B7869929E37BAF80 Ref B: SG2AA1070303025 Ref C: 2025-11-13T07:18:25Z' status: code: 404 message: Not Found @@ -3372,7 +3430,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/nonexistent-app?api-version=2025-10-02-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.App/containerApps/nonexistent-app'' @@ -3386,7 +3444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:42 GMT + - Thu, 13 Nov 2025 07:18:26 GMT expires: - '-1' pragma: @@ -3400,7 +3458,7 @@ interactions: x-ms-failure-cause: - gateway x-msedge-ref: - - 'Ref A: C5F71C96F54F4B74A1F29E651AA2740C Ref B: PNQ231110907060 Ref C: 2025-11-12T08:57:42Z' + - 'Ref A: 07D90A98D21348B9A2CCBD72079366F5 Ref B: SG2AA1070306036 Ref C: 2025-11-13T07:18:26Z' status: code: 404 message: Not Found @@ -3421,11 +3479,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:16:53.2905179","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:16:53.2905179"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"functionapp000003--11wtrd9","latestReadyRevisionName":"functionapp000003--11wtrd9","latestRevisionFqdn":"functionapp000003--11wtrd9.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3435,11 +3493,11 @@ interactions: cache-control: - no-cache content-length: - - '3714' + - '3718' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:42 GMT + - Thu, 13 Nov 2025 07:18:27 GMT expires: - '-1' pragma: @@ -3455,7 +3513,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2FC7A95665E54498876CBF0F83AA6907 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:43Z' + - 'Ref A: A47ED7680389489C87248FA87E4F86DB Ref B: SG2AA1070301062 Ref C: 2025-11-13T07:18:28Z' x-powered-by: - ASP.NET status: @@ -3478,11 +3536,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/functionapp000003?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/functionapp000003","name":"functionapp000003","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:56:15.1913583","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:56:15.1913583"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"functionapp000003--w234j82","latestReadyRevisionName":"functionapp000003--w234j82","latestRevisionFqdn":"functionapp000003--w234j82.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:16:53.2905179","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:16:53.2905179"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"functionapp000003--11wtrd9","latestReadyRevisionName":"functionapp000003--11wtrd9","latestRevisionFqdn":"functionapp000003--11wtrd9.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Single","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"functionapp000003.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"functionapp000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/functionapp000003/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3492,11 +3550,11 @@ interactions: cache-control: - no-cache content-length: - - '3714' + - '3718' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:43 GMT + - Thu, 13 Nov 2025 07:18:28 GMT expires: - '-1' pragma: @@ -3512,7 +3570,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 380B2218E88348F3AF3AD5EA915E964B Ref B: PNQ231110907023 Ref C: 2025-11-12T08:57:43Z' + - 'Ref A: 107E54E5CA2C4E37B2558D56F25BA45B Ref B: SG2AA1070306036 Ref C: 2025-11-13T07:18:28Z' x-powered-by: - ASP.NET status: @@ -3550,7 +3608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:57:44 GMT + - Thu, 13 Nov 2025 07:18:30 GMT expires: - '-1' pragma: @@ -3564,11 +3622,11 @@ interactions: x-ms-failure-cause: - service x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/978026a9-5089-43c7-901e-b75ae7608060 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/cb9b2e8c-8514-4a0d-9aba-0711508eb7d3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CF76026220A248108F81333EA2685032 Ref B: PNQ231110907054 Ref C: 2025-11-12T08:57:44Z' + - 'Ref A: 1AE75A981AEC485CBA432CF2A5D3B8DB Ref B: SG2AA1070303040 Ref C: 2025-11-13T07:18:30Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml index c6d6dd74e3d..936537016c7 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml @@ -329,7 +329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:32 GMT + - Thu, 13 Nov 2025 07:24:35 GMT expires: - '-1' pragma: @@ -343,7 +343,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 63A059385F6A4DAFAA7787E7F6666A2A Ref B: PNQ231110908023 Ref C: 2025-11-12T08:51:32Z' + - 'Ref A: EADDB0DFA53548CAA548D3D92211E45F Ref B: SG2AA1070303042 Ref C: 2025-11-13T07:24:35Z' status: code: 200 message: OK @@ -364,11 +364,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:27:12.0342405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:27:12.0342405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","staticIp":"135.224.187.152","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -378,11 +378,11 @@ interactions: cache-control: - no-cache content-length: - - '1795' + - '1798' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:33 GMT + - Thu, 13 Nov 2025 07:24:36 GMT expires: - '-1' pragma: @@ -398,7 +398,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 120067BA69134134B33474326E1996AF Ref B: PNQ231110907054 Ref C: 2025-11-12T08:51:33Z' + - 'Ref A: 220E75C00AEA4F3483BB59584CE3D283 Ref B: SG2AA1070305052 Ref C: 2025-11-13T07:24:36Z' x-powered-by: - ASP.NET status: @@ -734,7 +734,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:34 GMT + - Thu, 13 Nov 2025 07:24:38 GMT expires: - '-1' pragma: @@ -748,7 +748,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 068847FFA13D4ACC8BC231C7189E30BB Ref B: PNQ231110907052 Ref C: 2025-11-12T08:51:34Z' + - 'Ref A: 6604242A26FD456A87EBEDE946EF50EA Ref B: SG2AA1070302029 Ref C: 2025-11-13T07:24:38Z' status: code: 200 message: OK @@ -769,11 +769,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","name":"env-eastus2","type":"Microsoft.App/managedEnvironments","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T06:18:52.9165149","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T06:18:52.9165149"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyisland-cf4f1366.eastus2.azurecontainerapps.io","staticIp":"135.237.215.82","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T11:27:12.0342405","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T11:27:12.0342405"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","staticIp":"135.224.187.152","appLogsConfiguration":{"destination":null,"logAnalyticsConfiguration":null},"openTelemetryConfiguration":null,"zoneRedundant":false,"availabilityZones":null,"kedaConfiguration":{"version":"2.17.2"},"daprConfiguration":{"version":"1.13.6-msft.6"},"ingressConfiguration":null,"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/managedEnvironments/env-eastus2/eventstream","customDomainConfiguration":{"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","dnsSuffix":null,"certificateKeyVaultProperties":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":[{"workloadProfileType":"Consumption","name":"Consumption","enableFips":false}],"appInsightsConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}},"peerTrafficConfiguration":{"encryption":{"enabled":false}},"publicNetworkAccess":"Enabled","diskEncryptionConfiguration":null}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -783,11 +783,11 @@ interactions: cache-control: - no-cache content-length: - - '1795' + - '1798' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:34 GMT + - Thu, 13 Nov 2025 07:24:39 GMT expires: - '-1' pragma: @@ -803,7 +803,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9E4BC1E7BA7840BDA4861D4436136F29 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:51:35Z' + - 'Ref A: ECF4CC0F002B40ECB0AB32CB6B0C3F1A Ref B: SG2AA1070303040 Ref C: 2025-11-13T07:24:38Z' x-powered-by: - ASP.NET status: @@ -1139,7 +1139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:34 GMT + - Thu, 13 Nov 2025 07:24:39 GMT expires: - '-1' pragma: @@ -1153,7 +1153,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3EAC1AB0CFF34F04868BAC6792F39AEA Ref B: PNQ231110907042 Ref C: 2025-11-12T08:51:35Z' + - 'Ref A: F266E13832AC439EA9AFD3C2157A09C3 Ref B: SG2AA1070302034 Ref C: 2025-11-13T07:24:40Z' status: code: 200 message: OK @@ -1188,11 +1188,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:51:36.3948688Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"CloudBuild","name":"funcapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:24:41.8308559Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":null,"revisionTransitionThreshold":null,"ingress":{"fqdn":null,"external":true,"targetPort":80,"exposedPort":null,"transport":"Auto","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"CloudBuild","name":"funcapp000002"}],"initContainers":null,"scale":null,"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1200,7 +1200,7 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986154819402222&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=t6k2e2rXhs0JOq7FrYZWztC0nLNu93wNd1kF9g-VGpJM2ei5uB22yTsB-R8n_I_esku1v9YkFrULFWWLj_vYIbk9Zh0PKLktOylbjT8oSKskCr7qFOninMKpAyz4dikkaTGM9QMCwkiqFhzhHarViWEbb99-vlsn9Qj-yJEtgYF0o278UDrAkYnmHLnM9QX3AgTNkyYJHW0kQEN-Bo3m0FOcjEmgFDOe5UnYgkP-LEH5kCLBWwS317pJCrOqpUsPwEebzR_Y31ROkqjRATJ5dgRRU0GkPvbkmg42ThhUJJkMT6aIktPuVKSs4AlbvHVZhUcoO1Xh4ENOqQvg3y4DhA&h=evEOSAWwip1jLfbDgIeuj0ujhPx7Hu6jGYxeAzFVGpA cache-control: - no-cache content-length: @@ -1208,7 +1208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:36 GMT + - Thu, 13 Nov 2025 07:24:42 GMT expires: - '-1' pragma: @@ -1222,11 +1222,11 @@ interactions: x-ms-async-operation-timeout: - PT15M x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/7787e380-de06-4624-8393-ef77a93fa8c7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0683f063-80c3-43d6-866a-a9460cfb745d x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: 769BA329C363401F853A7E75BD8F1ECE Ref B: PNQ231110909040 Ref C: 2025-11-12T08:51:36Z' + - 'Ref A: 31A87872F80C473B89DC18E51321651C Ref B: SG2AA1070306029 Ref C: 2025-11-13T07:24:41Z' x-powered-by: - ASP.NET status: @@ -1249,10 +1249,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986154819402222&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=t6k2e2rXhs0JOq7FrYZWztC0nLNu93wNd1kF9g-VGpJM2ei5uB22yTsB-R8n_I_esku1v9YkFrULFWWLj_vYIbk9Zh0PKLktOylbjT8oSKskCr7qFOninMKpAyz4dikkaTGM9QMCwkiqFhzhHarViWEbb99-vlsn9Qj-yJEtgYF0o278UDrAkYnmHLnM9QX3AgTNkyYJHW0kQEN-Bo3m0FOcjEmgFDOe5UnYgkP-LEH5kCLBWwS317pJCrOqpUsPwEebzR_Y31ROkqjRATJ5dgRRU0GkPvbkmg42ThhUJJkMT6aIktPuVKSs4AlbvHVZhUcoO1Xh4ENOqQvg3y4DhA&h=evEOSAWwip1jLfbDgIeuj0ujhPx7Hu6jGYxeAzFVGpA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","name":"e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","status":"InProgress","startTime":"2025-11-13T07:24:41.8739562"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1266,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:36 GMT + - Thu, 13 Nov 2025 07:24:42 GMT expires: - '-1' pragma: @@ -1280,11 +1280,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/ab411084-55d4-4867-bc9a-2cb2802a7229 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/cbeb8e33-2e48-4316-9464-043c80594207 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 58A0A59611C24558BE78E80F662E036F Ref B: PNQ231110908036 Ref C: 2025-11-12T08:51:36Z' + - 'Ref A: 78E03E751F0C49FCA507FF36FC40D23D Ref B: SG2AA1070304042 Ref C: 2025-11-13T07:24:42Z' x-powered-by: - ASP.NET status: @@ -1307,10 +1307,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986154819402222&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=t6k2e2rXhs0JOq7FrYZWztC0nLNu93wNd1kF9g-VGpJM2ei5uB22yTsB-R8n_I_esku1v9YkFrULFWWLj_vYIbk9Zh0PKLktOylbjT8oSKskCr7qFOninMKpAyz4dikkaTGM9QMCwkiqFhzhHarViWEbb99-vlsn9Qj-yJEtgYF0o278UDrAkYnmHLnM9QX3AgTNkyYJHW0kQEN-Bo3m0FOcjEmgFDOe5UnYgkP-LEH5kCLBWwS317pJCrOqpUsPwEebzR_Y31ROkqjRATJ5dgRRU0GkPvbkmg42ThhUJJkMT6aIktPuVKSs4AlbvHVZhUcoO1Xh4ENOqQvg3y4DhA&h=evEOSAWwip1jLfbDgIeuj0ujhPx7Hu6jGYxeAzFVGpA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","name":"e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","status":"InProgress","startTime":"2025-11-13T07:24:41.8739562"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1324,7 +1324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:39 GMT + - Thu, 13 Nov 2025 07:24:45 GMT expires: - '-1' pragma: @@ -1338,11 +1338,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/b8202210-e64b-416c-8961-8daac96ed5bf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/04168994-14cb-4498-a5fe-1d842ac2f918 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7A510B1922EF4329BF6CEC4672A28215 Ref B: PNQ231110909054 Ref C: 2025-11-12T08:51:39Z' + - 'Ref A: 059456FD54644FA59006E5D53930C6F9 Ref B: SG2AA1070305031 Ref C: 2025-11-13T07:24:45Z' x-powered-by: - ASP.NET status: @@ -1365,10 +1365,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986154819402222&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=t6k2e2rXhs0JOq7FrYZWztC0nLNu93wNd1kF9g-VGpJM2ei5uB22yTsB-R8n_I_esku1v9YkFrULFWWLj_vYIbk9Zh0PKLktOylbjT8oSKskCr7qFOninMKpAyz4dikkaTGM9QMCwkiqFhzhHarViWEbb99-vlsn9Qj-yJEtgYF0o278UDrAkYnmHLnM9QX3AgTNkyYJHW0kQEN-Bo3m0FOcjEmgFDOe5UnYgkP-LEH5kCLBWwS317pJCrOqpUsPwEebzR_Y31ROkqjRATJ5dgRRU0GkPvbkmg42ThhUJJkMT6aIktPuVKSs4AlbvHVZhUcoO1Xh4ENOqQvg3y4DhA&h=evEOSAWwip1jLfbDgIeuj0ujhPx7Hu6jGYxeAzFVGpA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","name":"e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","status":"InProgress","startTime":"2025-11-13T07:24:41.8739562"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1382,7 +1382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:42 GMT + - Thu, 13 Nov 2025 07:24:49 GMT expires: - '-1' pragma: @@ -1396,11 +1396,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/e6d476a6-378b-40ea-8d61-f83e59025818 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/beffb141-effc-4137-a452-a7b286cccded x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4D25776D91A34609984EEB1D82739BED Ref B: PNQ231110909040 Ref C: 2025-11-12T08:51:42Z' + - 'Ref A: 3786E69641A04C7F9A4020874C08C7BE Ref B: SG2AA1070302025 Ref C: 2025-11-13T07:24:49Z' x-powered-by: - ASP.NET status: @@ -1423,10 +1423,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986154819402222&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=t6k2e2rXhs0JOq7FrYZWztC0nLNu93wNd1kF9g-VGpJM2ei5uB22yTsB-R8n_I_esku1v9YkFrULFWWLj_vYIbk9Zh0PKLktOylbjT8oSKskCr7qFOninMKpAyz4dikkaTGM9QMCwkiqFhzhHarViWEbb99-vlsn9Qj-yJEtgYF0o278UDrAkYnmHLnM9QX3AgTNkyYJHW0kQEN-Bo3m0FOcjEmgFDOe5UnYgkP-LEH5kCLBWwS317pJCrOqpUsPwEebzR_Y31ROkqjRATJ5dgRRU0GkPvbkmg42ThhUJJkMT6aIktPuVKSs4AlbvHVZhUcoO1Xh4ENOqQvg3y4DhA&h=evEOSAWwip1jLfbDgIeuj0ujhPx7Hu6jGYxeAzFVGpA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"InProgress","startTime":"2025-11-12T08:51:36.4389633"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","name":"e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","status":"InProgress","startTime":"2025-11-13T07:24:41.8739562"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1440,7 +1440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:44 GMT + - Thu, 13 Nov 2025 07:24:52 GMT expires: - '-1' pragma: @@ -1454,11 +1454,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/74fb11db-8bab-4998-afd8-226591951a35 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/8c33a4b9-dc4f-4814-b67c-db0e90b6371e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2B912785A044383878EC86BDE2B946D Ref B: PNQ231110909025 Ref C: 2025-11-12T08:51:44Z' + - 'Ref A: A33FF2CC7B8549FBBCAC610CF90F33D6 Ref B: SG2AA1070303031 Ref C: 2025-11-13T07:24:52Z' x-powered-by: - ASP.NET status: @@ -1481,10 +1481,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985342965042411&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=fQkuVwckIpYtgpEr-JW2twk0Zxnm_Fq859ng0HoqQvtedvojlAv4BdpF46M4S0fRqTl7TXTKIFeWzHv2dmKGzI0xVgdHL281ce5KVAa7vW4gKnINckuoC9_3RxUkpcnLghSGubsNxnJIChV_uHh93eioNOiwQAvr4nBLgK-Y80ATYUdlWnoKaYoTsfVZvSft4EoT8rnuGhw5D75QanYG_z56Qoxo9MqHVkYLcm8Z-MVjt2q3rElw7LEf_7-s06yLDcFJvxxm-SPiFyM3VhGAD0taw02keye6meb4OnEVAAfMgOMxD_JPlVAWrHZDwAC1ZTPOScRHU_KdhLPo2E5icg&h=62ldG6oR8Q1OIDkFwMEgOHvrZ5YXKCpuAc_sWEY3SRQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986154819402222&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=t6k2e2rXhs0JOq7FrYZWztC0nLNu93wNd1kF9g-VGpJM2ei5uB22yTsB-R8n_I_esku1v9YkFrULFWWLj_vYIbk9Zh0PKLktOylbjT8oSKskCr7qFOninMKpAyz4dikkaTGM9QMCwkiqFhzhHarViWEbb99-vlsn9Qj-yJEtgYF0o278UDrAkYnmHLnM9QX3AgTNkyYJHW0kQEN-Bo3m0FOcjEmgFDOe5UnYgkP-LEH5kCLBWwS317pJCrOqpUsPwEebzR_Y31ROkqjRATJ5dgRRU0GkPvbkmg42ThhUJJkMT6aIktPuVKSs4AlbvHVZhUcoO1Xh4ENOqQvg3y4DhA&h=evEOSAWwip1jLfbDgIeuj0ujhPx7Hu6jGYxeAzFVGpA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/bbb1f158-a629-444e-80df-7775376edeb3","name":"bbb1f158-a629-444e-80df-7775376edeb3","status":"Succeeded","startTime":"2025-11-12T08:51:36.4389633"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","name":"e5ae639b-c4b5-4f28-bd9a-22bb4e9ce4ef","status":"Succeeded","startTime":"2025-11-13T07:24:41.8739562"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1498,7 +1498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:48 GMT + - Thu, 13 Nov 2025 07:24:55 GMT expires: - '-1' pragma: @@ -1512,11 +1512,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/589717b3-ee1d-4058-b1f6-ba1dec2db411 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/75b0375c-374a-4cec-b09f-b38289570256 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D5C25AA4329470087EFA26112DB2647 Ref B: PNQ231110908029 Ref C: 2025-11-12T08:51:47Z' + - 'Ref A: DA601C8D506F46B78BDDE6CAA9D63C3E Ref B: SG2AA1070306040 Ref C: 2025-11-13T07:24:55Z' x-powered-by: - ASP.NET status: @@ -1539,11 +1539,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:51:36.3948688"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--dk1ejrs","latestReadyRevisionName":"funcapp000002--dk1ejrs","latestRevisionFqdn":"funcapp000002--dk1ejrs.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:24:41.8308559"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--8optwbm","latestReadyRevisionName":"funcapp000002--8optwbm","latestRevisionFqdn":"funcapp000002--8optwbm.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -1553,11 +1553,11 @@ interactions: cache-control: - no-cache content-length: - - '3687' + - '3691' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:51:48 GMT + - Thu, 13 Nov 2025 07:24:57 GMT expires: - '-1' pragma: @@ -1573,7 +1573,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 41E341FA25814A0EAEF1885BE483292C Ref B: PNQ231110906052 Ref C: 2025-11-12T08:51:48Z' + - 'Ref A: EF354C4B4E054D0A8ECA59F37AE5A3E3 Ref B: SG2AA1070305042 Ref C: 2025-11-13T07:24:56Z' x-powered-by: - ASP.NET status: @@ -1909,7 +1909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:20 GMT + - Thu, 13 Nov 2025 07:25:28 GMT expires: - '-1' pragma: @@ -1923,7 +1923,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82860D2FCB5C4A5BA464C3FD12E86B1C Ref B: PNQ231110907062 Ref C: 2025-11-12T08:52:20Z' + - 'Ref A: D558AB7A48594F79B7655770D1947E5E Ref B: SG2AA1070301062 Ref C: 2025-11-13T07:25:29Z' status: code: 200 message: OK @@ -2257,7 +2257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:20 GMT + - Thu, 13 Nov 2025 07:25:29 GMT expires: - '-1' pragma: @@ -2271,7 +2271,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 25B1794548724772A423A4ACF60BB738 Ref B: PNQ231110906054 Ref C: 2025-11-12T08:52:20Z' + - 'Ref A: 287599219C9F4D5D9D1F76594739D7D3 Ref B: SG2AA1070303025 Ref C: 2025-11-13T07:25:29Z' status: code: 200 message: OK @@ -2292,11 +2292,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:51:36.3948688"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--dk1ejrs","latestReadyRevisionName":"funcapp000002--dk1ejrs","latestRevisionFqdn":"funcapp000002--dk1ejrs.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:24:41.8308559"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--8optwbm","latestReadyRevisionName":"funcapp000002--8optwbm","latestRevisionFqdn":"funcapp000002--8optwbm.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2306,11 +2306,11 @@ interactions: cache-control: - no-cache content-length: - - '3687' + - '3691' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:22 GMT + - Thu, 13 Nov 2025 07:25:30 GMT expires: - '-1' pragma: @@ -2326,7 +2326,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C1392ED18A7D4D71BC8D7C84983745CE Ref B: PNQ231110909034 Ref C: 2025-11-12T08:52:21Z' + - 'Ref A: 8A43131796644DBFA6563217A4E20243 Ref B: SG2AA1070305034 Ref C: 2025-11-13T07:25:30Z' x-powered-by: - ASP.NET status: @@ -2355,7 +2355,7 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '' @@ -2366,17 +2366,17 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986155317982256&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=aNqk37xhXxoYrXvPwEKiYbmKzuBT5RItJUqPTrEV2do5bGHZ8XvA4iUv8lA7Dt4bGDi_9AIx-MkJYD3pxLNilKWwIME6gqC1sIEtji_-ZjwkKdRPKzKqqJkUkNID4veZyHFmj9NuPe2SxBaAjb_aK4uU8F-MO-UAuA2UnlZIhVRshvangrbA17oZLSnGDM7dpII2ZhNt4fK5ymw8jCsRtFQi-GBon8D9K-eTekh-W_v0JE2lNwreNjwyOE4923WcMW6ANNswB5J1uCb68HM9WovveVbUKghi6sddW4bPVGQKwzHJU8douLhHXmiRMW0fzQJoNcMnjGcKvbzjOvU_nQ&h=Da-0Kxmkd6ojoQCBQ3gxrdodOfNisJdnjxyMvXvP-JI cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Nov 2025 08:52:23 GMT + - Thu, 13 Nov 2025 07:25:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=uvMbF6hX3c3sC27tn2J0-XKvdSH0Ce2dQ5V09FsOQZpKcqJqFnwmYhd6pYFj-gBiH2_VDpsHW29cygtisVylW2SBI9CgaOYV4SDjRCGcKY2Qv_xlSA7ihRnCfG_gGlBdK8m3cEOO-W1AwDF7tbPqudJofd3SOnYSZaphiVj8wD-dhAkaT6DFhdW4okMLLZi4Ks7z7Ex7E5_KH6xpnVFNj4Zy0pF-_HHImMb-jtUoTVLHZDqPuPjPP3GbYbUxtX7yKnPEErT5u11BgD3NLgy3jIGWQjjbleG0twWZef7_y9nMLeKHqDH_pbvwb9Q1lAm3p6GprVmdBwoB-ngADQyIow&h=Zh0PXWqK5AgLTVlIaZQFsQIoi6X62qOqcw8GfXrXPqY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/60babb9b-a0af-4834-835f-62ec9061f85c?api-version=2025-10-02-preview&t=638986155318138507&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V7i0ioqGe4H5aGSRBR1LVmC9fb_3jLyC2YSXqqS3BmSGN9wc36GoQmwU2WxD-qnAU5gHMgv3WuDSuLlfJch8V0vtCqrlZOKX0Imi00Ngc_aOM5pzorixx0gC468nWJBlKFXBDp2VD8H7RJ2oY-2PBvovweuvVSfUZ7GHzzGdfzAoA6cqaAmBV7ZjhDerLNVdwhWfqESV4A5mRcQu-LdFMR5iA9pN_-_VeCoDTdAiC-fdsGCco4Yh7GYpbnZJbp0rcsXtZb5ai96JPluRybAtyvxXA_45MMStxHsKfVGoNo-7KcKTYoxBIwzkwe3Qdl64o9a8nE9OluGkhXQK6ttPPQ&h=GfW4LQH_xpIKdM1woYzN0WPoyQ3eKuLNzasJ5UD8sWI pragma: - no-cache strict-transport-security: @@ -2386,11 +2386,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/34092aa7-28a6-457b-b1c5-2d76cfde768c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/3004156c-80fc-49c0-b400-eaad67b09509 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: B02DE91607BA4620B587FBB654AAE39A Ref B: PNQ231110909031 Ref C: 2025-11-12T08:52:22Z' + - 'Ref A: C4D7561CC52B4EA295AB273507F055B1 Ref B: SG2AA1070306031 Ref C: 2025-11-13T07:25:31Z' x-powered-by: - ASP.NET status: @@ -2413,10 +2413,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986155317982256&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=aNqk37xhXxoYrXvPwEKiYbmKzuBT5RItJUqPTrEV2do5bGHZ8XvA4iUv8lA7Dt4bGDi_9AIx-MkJYD3pxLNilKWwIME6gqC1sIEtji_-ZjwkKdRPKzKqqJkUkNID4veZyHFmj9NuPe2SxBaAjb_aK4uU8F-MO-UAuA2UnlZIhVRshvangrbA17oZLSnGDM7dpII2ZhNt4fK5ymw8jCsRtFQi-GBon8D9K-eTekh-W_v0JE2lNwreNjwyOE4923WcMW6ANNswB5J1uCb68HM9WovveVbUKghi6sddW4bPVGQKwzHJU8douLhHXmiRMW0fzQJoNcMnjGcKvbzjOvU_nQ&h=Da-0Kxmkd6ojoQCBQ3gxrdodOfNisJdnjxyMvXvP-JI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c","name":"60babb9b-a0af-4834-835f-62ec9061f85c","status":"InProgress","startTime":"2025-11-13T07:25:31.8070607"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2430,7 +2430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:24 GMT + - Thu, 13 Nov 2025 07:25:33 GMT expires: - '-1' pragma: @@ -2444,11 +2444,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/713215b4-5307-4103-892a-5903bce19666 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/f9411855-62e5-4002-8155-0d10c378deeb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 31A04FDF7783418AAC856E1333E76DC1 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:52:24Z' + - 'Ref A: 551C62BF6E7C4DCAB5D9B3E5F685C534 Ref B: SG2AA1070303034 Ref C: 2025-11-13T07:25:32Z' x-powered-by: - ASP.NET status: @@ -2471,10 +2471,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986155317982256&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=aNqk37xhXxoYrXvPwEKiYbmKzuBT5RItJUqPTrEV2do5bGHZ8XvA4iUv8lA7Dt4bGDi_9AIx-MkJYD3pxLNilKWwIME6gqC1sIEtji_-ZjwkKdRPKzKqqJkUkNID4veZyHFmj9NuPe2SxBaAjb_aK4uU8F-MO-UAuA2UnlZIhVRshvangrbA17oZLSnGDM7dpII2ZhNt4fK5ymw8jCsRtFQi-GBon8D9K-eTekh-W_v0JE2lNwreNjwyOE4923WcMW6ANNswB5J1uCb68HM9WovveVbUKghi6sddW4bPVGQKwzHJU8douLhHXmiRMW0fzQJoNcMnjGcKvbzjOvU_nQ&h=Da-0Kxmkd6ojoQCBQ3gxrdodOfNisJdnjxyMvXvP-JI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c","name":"60babb9b-a0af-4834-835f-62ec9061f85c","status":"InProgress","startTime":"2025-11-13T07:25:31.8070607"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2488,7 +2488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:27 GMT + - Thu, 13 Nov 2025 07:25:35 GMT expires: - '-1' pragma: @@ -2502,11 +2502,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/bc70f449-5840-48e1-b334-fc88ad77eea2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/b6735640-2690-4dcf-ad97-8e596abacc84 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C23D1D9539A84E23A3FDA0EB00EECDB1 Ref B: PNQ231110909042 Ref C: 2025-11-12T08:52:27Z' + - 'Ref A: B630B6A3953E4DD19BEACF9338E9DA37 Ref B: SG2AA1070302034 Ref C: 2025-11-13T07:25:35Z' x-powered-by: - ASP.NET status: @@ -2529,10 +2529,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986155317982256&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=aNqk37xhXxoYrXvPwEKiYbmKzuBT5RItJUqPTrEV2do5bGHZ8XvA4iUv8lA7Dt4bGDi_9AIx-MkJYD3pxLNilKWwIME6gqC1sIEtji_-ZjwkKdRPKzKqqJkUkNID4veZyHFmj9NuPe2SxBaAjb_aK4uU8F-MO-UAuA2UnlZIhVRshvangrbA17oZLSnGDM7dpII2ZhNt4fK5ymw8jCsRtFQi-GBon8D9K-eTekh-W_v0JE2lNwreNjwyOE4923WcMW6ANNswB5J1uCb68HM9WovveVbUKghi6sddW4bPVGQKwzHJU8douLhHXmiRMW0fzQJoNcMnjGcKvbzjOvU_nQ&h=Da-0Kxmkd6ojoQCBQ3gxrdodOfNisJdnjxyMvXvP-JI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c","name":"60babb9b-a0af-4834-835f-62ec9061f85c","status":"InProgress","startTime":"2025-11-13T07:25:31.8070607"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2546,7 +2546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:30 GMT + - Thu, 13 Nov 2025 07:25:39 GMT expires: - '-1' pragma: @@ -2560,11 +2560,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/b2951811-a84d-4e18-9e91-e3825a0da0b9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/83b8f4da-4243-4141-b52f-503407b5ea06 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D4DE72FCF5AA429FB38CD8AD45A75BC1 Ref B: PNQ231110909042 Ref C: 2025-11-12T08:52:29Z' + - 'Ref A: 4A06BC123F6B4925935DB6CA1796ED0B Ref B: SG2AA1070302034 Ref C: 2025-11-13T07:25:39Z' x-powered-by: - ASP.NET status: @@ -2587,10 +2587,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986155317982256&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=aNqk37xhXxoYrXvPwEKiYbmKzuBT5RItJUqPTrEV2do5bGHZ8XvA4iUv8lA7Dt4bGDi_9AIx-MkJYD3pxLNilKWwIME6gqC1sIEtji_-ZjwkKdRPKzKqqJkUkNID4veZyHFmj9NuPe2SxBaAjb_aK4uU8F-MO-UAuA2UnlZIhVRshvangrbA17oZLSnGDM7dpII2ZhNt4fK5ymw8jCsRtFQi-GBon8D9K-eTekh-W_v0JE2lNwreNjwyOE4923WcMW6ANNswB5J1uCb68HM9WovveVbUKghi6sddW4bPVGQKwzHJU8douLhHXmiRMW0fzQJoNcMnjGcKvbzjOvU_nQ&h=Da-0Kxmkd6ojoQCBQ3gxrdodOfNisJdnjxyMvXvP-JI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"InProgress","startTime":"2025-11-12T08:52:24.2228812"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c","name":"60babb9b-a0af-4834-835f-62ec9061f85c","status":"InProgress","startTime":"2025-11-13T07:25:31.8070607"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2604,7 +2604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:33 GMT + - Thu, 13 Nov 2025 07:25:41 GMT expires: - '-1' pragma: @@ -2618,11 +2618,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/0a11bd44-7822-4eba-af2d-14639138b031 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/a2c791d5-3fc7-4530-ae7d-01865c0fd81d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D6B0CC7BBA3B4905A87C2AD0594510E4 Ref B: PNQ231110908025 Ref C: 2025-11-12T08:52:33Z' + - 'Ref A: 655D4538740E4276814E5F11D5775BCF Ref B: SG2AA1070306023 Ref C: 2025-11-13T07:25:42Z' x-powered-by: - ASP.NET status: @@ -2645,10 +2645,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393?api-version=2025-02-02-preview&azureAsyncOperation=true&t=638985343442326619&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=V9tWDllk8QEK9N9BdxyzbuNeg_SekivWV9YngxAzeurpeU3-wJf-wR7wc9fCN66InJ4EhgUnaPTGYKu0ELEBa0kauY5_HN9jiXojhmAFffi7DTHKevC0RIP5i2d5OZ9xoBbItBfqSZUL_dFg7ArbRE6ZPJipSBFO9fxb_HaTqYqwxjVnZPtzX-jZtzzVZWxyUdM_4mwRRgP8YyzrHlmsUDV-tGD3Q0MZbA0P0_nLdNx2IAipChe2wdPBwLXFSigG2RV41-dH6JHtlri_SIDJfSls8rzyXw30eSQLxMR_m9FsI4f1NbfRCfBmCRQFjrjeddPvCOKnpRQUQMJJH2gbMA&h=LcJuMciwHemUo3rGXcKWu25_kpklhbOcdwRNZ9je3_s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c?api-version=2025-10-02-preview&azureAsyncOperation=true&t=638986155317982256&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=aNqk37xhXxoYrXvPwEKiYbmKzuBT5RItJUqPTrEV2do5bGHZ8XvA4iUv8lA7Dt4bGDi_9AIx-MkJYD3pxLNilKWwIME6gqC1sIEtji_-ZjwkKdRPKzKqqJkUkNID4veZyHFmj9NuPe2SxBaAjb_aK4uU8F-MO-UAuA2UnlZIhVRshvangrbA17oZLSnGDM7dpII2ZhNt4fK5ymw8jCsRtFQi-GBon8D9K-eTekh-W_v0JE2lNwreNjwyOE4923WcMW6ANNswB5J1uCb68HM9WovveVbUKghi6sddW4bPVGQKwzHJU8douLhHXmiRMW0fzQJoNcMnjGcKvbzjOvU_nQ&h=Da-0Kxmkd6ojoQCBQ3gxrdodOfNisJdnjxyMvXvP-JI response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/be4a2fd5-ab26-412e-a727-978637558393","name":"be4a2fd5-ab26-412e-a727-978637558393","status":"Succeeded","startTime":"2025-11-12T08:52:24.2228812"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/60babb9b-a0af-4834-835f-62ec9061f85c","name":"60babb9b-a0af-4834-835f-62ec9061f85c","status":"Succeeded","startTime":"2025-11-13T07:25:31.8070607"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2662,7 +2662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:36 GMT + - Thu, 13 Nov 2025 07:25:44 GMT expires: - '-1' pragma: @@ -2676,11 +2676,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/centralindia/7300e61b-8cd6-42a9-8142-f6cc2a190daa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/97e1558b-70b8-4302-b6d8-1965b5138e83 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F85AD0AD0A2343ACB6425BA2B7725875 Ref B: PNQ231110909029 Ref C: 2025-11-12T08:52:36Z' + - 'Ref A: 5FA4C32D38804DCA806ACB38DF9A922A Ref B: SG2AA1070306023 Ref C: 2025-11-13T07:25:45Z' x-powered-by: - ASP.NET status: @@ -2703,11 +2703,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:52:23.5139087"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--dk1ejrs","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:25:31.4075845"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--8optwbm","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2717,11 +2717,11 @@ interactions: cache-control: - no-cache content-length: - - '3684' + - '3688' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:52:37 GMT + - Thu, 13 Nov 2025 07:25:46 GMT expires: - '-1' pragma: @@ -2737,7 +2737,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 44363AFC09F142B2AC5D406ECC722302 Ref B: PNQ231110908040 Ref C: 2025-11-12T08:52:37Z' + - 'Ref A: 1EDC7269B68A4EF0BE3CC70705480994 Ref B: SG2AA1070302031 Ref C: 2025-11-13T07:25:46Z' x-powered-by: - ASP.NET status: @@ -2763,7 +2763,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions?api-version=2025-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--dk1ejrs","name":"funcapp000002--dk1ejrs","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:51:43+00:00","fqdn":"funcapp000002--dk1ejrs.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:52:29+00:00","fqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--8optwbm","name":"funcapp000002--8optwbm","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:24:48+00:00","fqdn":"funcapp000002--8optwbm.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:latest","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:25:37+00:00","fqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}]}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -2773,11 +2773,11 @@ interactions: cache-control: - no-cache content-length: - - '2008' + - '2012' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:08 GMT + - Thu, 13 Nov 2025 07:26:18 GMT expires: - '-1' pragma: @@ -2791,11 +2791,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d12e740e-16b3-456b-82f4-47da5bd26f2c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/c3e5ac61-3652-4191-9413-efb3b57de9fb x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E2971E69059D430C9152587B698AD496 Ref B: PNQ231110908060 Ref C: 2025-11-12T08:53:08Z' + - 'Ref A: E501FB98EC064B49A991A501B8D6D884 Ref B: SG2AA1070302040 Ref C: 2025-11-13T07:26:18Z' x-powered-by: - ASP.NET status: @@ -3131,7 +3131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:10 GMT + - Thu, 13 Nov 2025 07:26:20 GMT expires: - '-1' pragma: @@ -3145,7 +3145,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5E31EC29A0AA4DE39AAD28C62FCAEDE3 Ref B: PNQ231110907023 Ref C: 2025-11-12T08:53:10Z' + - 'Ref A: AD37B9B1994146E39B376B1D3AB68302 Ref B: SG2AA1070301052 Ref C: 2025-11-13T07:26:20Z' status: code: 200 message: OK @@ -3170,7 +3170,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:52:23.5139087"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.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,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:25:31.4075845"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.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,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3180,11 +3180,11 @@ interactions: cache-control: - no-cache content-length: - - '3527' + - '3531' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:11 GMT + - Thu, 13 Nov 2025 07:26:22 GMT expires: - '-1' pragma: @@ -3200,7 +3200,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B44977AE75E9428B95B15A8189E7FB55 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:53:10Z' + - 'Ref A: 11AB0BBBDC3345509BC7F5FAD7740C6D Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:26:21Z' x-powered-by: - ASP.NET status: @@ -3226,7 +3226,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001?api-version=2025-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-12T08:52:29+00:00","fqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001","name":"funcapp000002--0000001","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2025-11-13T07:25:37+00:00","fqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":null,"pollingInterval":null,"rules":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"10"}}}]},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned","runningState":"Running"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3236,11 +3236,11 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '999' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:12 GMT + - Thu, 13 Nov 2025 07:26:22 GMT expires: - '-1' pragma: @@ -3254,11 +3254,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/174b930c-c6cc-43dd-98ff-069a53d6c74e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b4691825-f6de-4085-a15b-1227c7692f2f x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BDCA3296609C4A139F7958AF7A3EF546 Ref B: PNQ231110909029 Ref C: 2025-11-12T08:53:11Z' + - 'Ref A: 761DA9BD8AF84F59ABECA2F21135E2DB Ref B: SG2AA1070306052 Ref C: 2025-11-13T07:26:23Z' x-powered-by: - ASP.NET status: @@ -3298,17 +3298,17 @@ interactions: 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, 2025-07-01, 2025-10-02-preview, 2026-01-01 azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748?api-version=2025-07-01&azureAsyncOperation=true&t=638986155869172189&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rwvlqr1kaikPgMkOficODcC2eLS275Fxm8ErkWGr4CF9nmCvxhRv96F6-acSdqMJDD61_UuPIFGe5dJEK0Zd0-ZsZGC6-NlnPdfiqhQjijrilB3Wn97EV051zkh3OyrihN_9LbVRAtMZpkmEC1N9fWUAZK_Oz_Ujh0RCd-tOf8NQDCXtZtuuA8qvfBe5hR1udUilABAvLv2_IxGxCgqz0IMnWdPX002Uz7_R7RihboZLfJSvuC4oABS9KQn-YrjeOn5x64nOev8doKwHiU4fXTpWkeBfecjTjXLI9fDUoURWE4r7lzdFufX3R8UjSMyWkFf97uFh2A6I5QDyysjJ0g&h=66BvbKZbXtZ6ISuZO44Ete32yqRziSqRcdVj8oHynmA cache-control: - no-cache content-length: - '0' date: - - Wed, 12 Nov 2025 08:53:12 GMT + - Thu, 13 Nov 2025 07:26:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=GA-bBICTfZNhm0LlHWbfOAE_oUrpNsr4wzYXEi-Sg3hp1PNuUJagBwfmM1lLfzReKsgqQU_aeOIkJkMyMfcaXUwY_Mb1k272UhKIQYlaHoNzTGrhE3vJX4spFsRj_SlwTKYhm9erLyWIgJ8dL77YOIBak2cCeOYYeYUblFeQINNprDUq3PzkqJB_61tXW8N7u9sIbp_jLl416T8_CuaOSjaNzzqZ8cYFXrJDluumcIdzmf-PYn5gcARoJcYosLGe_iVuqJrXKKGYXCEtsVng90Hn3vBa_PAvPZ6Q_ML1FYLMCJK_IKPFIQmKibUTnAYuWOjt9CL1QONI0LQrPn8Qew&h=rugn5X-HgCEFOowLOKc6f-NAHeUrJVyB-jY53bThqNc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/c9020119-92e9-451a-8a6b-9be4eb82c748?api-version=2025-07-01&t=638986155869328449&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=xBVallkuVLNsdlHmP5GWZc7RPu8FaDGGVslIQ3najjCmTaVWQgHtjjgUC4q3s27Y5_D-iyROOzxGCgHpxsetm4ZW7EuwIjDDXQQweCDXC5qWBaT9Y7DvLNH2wMDj3weDWbORTq_ybZs9M22D-s5ClMZn_Il8bWIXVoPagZehDTzDMeQaArp8pK7Hbtvx4yFRkqjQT2sZQFLxqf41pve7uNc460I81XckAjMarz_HnDrHpuvRXDBUde0qXXApfIvjLjXgDZ6WDtmPFAufYaa6oTDSKDj3tIoQViylbjJU1nC-JmJrHEkwi_-6ojTMXOk12tjRFr4IX3irfZFd0mEv9A&h=z5gPNODCyx2Te2mxBZjoxqz5WsMNpRBFsuSS5jl1xIQ pragma: - no-cache strict-transport-security: @@ -3318,11 +3318,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/b21203c2-c533-4eca-92a3-1b46eb2f19b1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/d7140c24-c72e-4f58-9c02-889f8a9da5f5 x-ms-ratelimit-remaining-subscription-resource-requests: - '799' x-msedge-ref: - - 'Ref A: 8614B73AB21B4AB0A7C2C93446BF3AD5 Ref B: PNQ231110907025 Ref C: 2025-11-12T08:53:12Z' + - 'Ref A: D10EFD8B793244FCAC313431BD52C1A8 Ref B: SG2AA1070301029 Ref C: 2025-11-13T07:26:24Z' x-powered-by: - ASP.NET status: @@ -3345,10 +3345,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748?api-version=2025-07-01&azureAsyncOperation=true&t=638986155869172189&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rwvlqr1kaikPgMkOficODcC2eLS275Fxm8ErkWGr4CF9nmCvxhRv96F6-acSdqMJDD61_UuPIFGe5dJEK0Zd0-ZsZGC6-NlnPdfiqhQjijrilB3Wn97EV051zkh3OyrihN_9LbVRAtMZpkmEC1N9fWUAZK_Oz_Ujh0RCd-tOf8NQDCXtZtuuA8qvfBe5hR1udUilABAvLv2_IxGxCgqz0IMnWdPX002Uz7_R7RihboZLfJSvuC4oABS9KQn-YrjeOn5x64nOev8doKwHiU4fXTpWkeBfecjTjXLI9fDUoURWE4r7lzdFufX3R8UjSMyWkFf97uFh2A6I5QDyysjJ0g&h=66BvbKZbXtZ6ISuZO44Ete32yqRziSqRcdVj8oHynmA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748","name":"c9020119-92e9-451a-8a6b-9be4eb82c748","status":"InProgress","startTime":"2025-11-13T07:26:26.8048029"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3362,7 +3362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:13 GMT + - Thu, 13 Nov 2025 07:26:26 GMT expires: - '-1' pragma: @@ -3376,11 +3376,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/d2803695-b681-4e28-be00-ecb2a5aa7514 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/8d7dcaf5-da70-455a-b1f8-52c781db1f80 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 35AFAB8EDFA5452A901EF4E9DACA8BEB Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:13Z' + - 'Ref A: 46986494DC3F48DC8D65D8D05B35789E Ref B: SG2AA1070304029 Ref C: 2025-11-13T07:26:27Z' x-powered-by: - ASP.NET status: @@ -3403,10 +3403,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748?api-version=2025-07-01&azureAsyncOperation=true&t=638986155869172189&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rwvlqr1kaikPgMkOficODcC2eLS275Fxm8ErkWGr4CF9nmCvxhRv96F6-acSdqMJDD61_UuPIFGe5dJEK0Zd0-ZsZGC6-NlnPdfiqhQjijrilB3Wn97EV051zkh3OyrihN_9LbVRAtMZpkmEC1N9fWUAZK_Oz_Ujh0RCd-tOf8NQDCXtZtuuA8qvfBe5hR1udUilABAvLv2_IxGxCgqz0IMnWdPX002Uz7_R7RihboZLfJSvuC4oABS9KQn-YrjeOn5x64nOev8doKwHiU4fXTpWkeBfecjTjXLI9fDUoURWE4r7lzdFufX3R8UjSMyWkFf97uFh2A6I5QDyysjJ0g&h=66BvbKZbXtZ6ISuZO44Ete32yqRziSqRcdVj8oHynmA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748","name":"c9020119-92e9-451a-8a6b-9be4eb82c748","status":"InProgress","startTime":"2025-11-13T07:26:26.8048029"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3420,7 +3420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:15 GMT + - Thu, 13 Nov 2025 07:26:30 GMT expires: - '-1' pragma: @@ -3434,11 +3434,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/bf6fda14-2da4-40df-ac29-32ee74f993d6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/db5526b1-52c2-4638-b65c-28eecaf10148 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5C9097A75162407A8D8BF9BF962D89FA Ref B: PNQ231110908060 Ref C: 2025-11-12T08:53:15Z' + - 'Ref A: 25B8CEEE40B14070AFDF30C7F691D81B Ref B: SG2AA1070306054 Ref C: 2025-11-13T07:26:30Z' x-powered-by: - ASP.NET status: @@ -3461,10 +3461,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748?api-version=2025-07-01&azureAsyncOperation=true&t=638986155869172189&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rwvlqr1kaikPgMkOficODcC2eLS275Fxm8ErkWGr4CF9nmCvxhRv96F6-acSdqMJDD61_UuPIFGe5dJEK0Zd0-ZsZGC6-NlnPdfiqhQjijrilB3Wn97EV051zkh3OyrihN_9LbVRAtMZpkmEC1N9fWUAZK_Oz_Ujh0RCd-tOf8NQDCXtZtuuA8qvfBe5hR1udUilABAvLv2_IxGxCgqz0IMnWdPX002Uz7_R7RihboZLfJSvuC4oABS9KQn-YrjeOn5x64nOev8doKwHiU4fXTpWkeBfecjTjXLI9fDUoURWE4r7lzdFufX3R8UjSMyWkFf97uFh2A6I5QDyysjJ0g&h=66BvbKZbXtZ6ISuZO44Ete32yqRziSqRcdVj8oHynmA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748","name":"c9020119-92e9-451a-8a6b-9be4eb82c748","status":"InProgress","startTime":"2025-11-13T07:26:26.8048029"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3478,7 +3478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:18 GMT + - Thu, 13 Nov 2025 07:26:33 GMT expires: - '-1' pragma: @@ -3492,11 +3492,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/fab2a273-f4c9-482e-81db-7549996462c2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southeastasia/d92ff31a-daf5-4a19-940e-12a6567236c1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F1AF8A21B59341C8BB7788EA8B753062 Ref B: PNQ231110906060 Ref C: 2025-11-12T08:53:18Z' + - 'Ref A: 8AA912E9AEBB4964BC2FE5DB534F5EBA Ref B: SG2AA1070304042 Ref C: 2025-11-13T07:26:33Z' x-powered-by: - ASP.NET status: @@ -3519,68 +3519,10 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748?api-version=2025-07-01&azureAsyncOperation=true&t=638986155869172189&c=MIIHhzCCBm-gAwIBAgITHgePNrHnjd12qB0bIgAAB482sTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUxMDIyMTAyMjQ3WhcNMjYwNDIwMTAyMjQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa4N6biD4b3y2sbkcnqgvMUgcwQKiAzk6u9JnZaint0OklVT6F5R74wbTDsv_4dzFZJj0B58oOFYbmYdz5UpWx-trcGnzZyXvbpu8L_VPU1RpVCJQ0SRIq-g3rNEXPuVf6evWZVBtz7-MgDAFvnccLefCnMUHp7N4bZqiDsy28OfmRbQzhhoL41JzMdqzFlKgQ-dTsvi0HHLif_Mr07Es0fLchVhsZYkmIgvY9VUQZtZET0We8oF1B2WHHV6sL8vIzsz9jqtH2zdt8MgnznMeILbR56pwInNYirrHezmh8gVBHp_Zl-F56bqZmow4Eu_YTeO_XuWPKCm1F9YaLo0c0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRcVbdaRCO2xc_MBp944xfmCA0TCjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBALWa0sUBkyggdGJnmhB4J6SrVANSHlycQCHiZlA2U4MwHUJkcgyojUIF5Xw6ZOZvN0ifW5XvRnp2jwnWjABIflBMuxsEFZV3vZM4UEcZVhbmtGa51SkNWjDMEamlhq6Z_36ecuej-YMQzDLG8AYFDMekpXYoO_e-oelBHDIepzFOUagZhG5kH9-tdIkdiy3hQyQgC8qYCj820QAMfjqA2itQaWwrPgmQzmsC4UPQZKd3MgSgpNfpCE0kLGC0paPa3hXtlF25KKEYiLlFkqhiF31gG3922DVrfGHJWIR6bZId54ZuWDj4nkCBCUsu72HLCupMgnOlyV7z9Ff4x1KXE3s&s=rwvlqr1kaikPgMkOficODcC2eLS275Fxm8ErkWGr4CF9nmCvxhRv96F6-acSdqMJDD61_UuPIFGe5dJEK0Zd0-ZsZGC6-NlnPdfiqhQjijrilB3Wn97EV051zkh3OyrihN_9LbVRAtMZpkmEC1N9fWUAZK_Oz_Ujh0RCd-tOf8NQDCXtZtuuA8qvfBe5hR1udUilABAvLv2_IxGxCgqz0IMnWdPX002Uz7_R7RihboZLfJSvuC4oABS9KQn-YrjeOn5x64nOev8doKwHiU4fXTpWkeBfecjTjXLI9fDUoURWE4r7lzdFufX3R8UjSMyWkFf97uFh2A6I5QDyysjJ0g&h=66BvbKZbXtZ6ISuZO44Ete32yqRziSqRcdVj8oHynmA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"InProgress","startTime":"2025-11-12T08:53:13.1519427"}' - headers: - api-supported-versions: - - 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, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, - 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-02-02-preview, - 2025-07-01, 2025-10-02-preview, 2026-01-01 - cache-control: - - no-cache - content-length: - - '279' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 12 Nov 2025 08:53:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/southindia/422b2fa8-9b36-4fdb-9a2c-076d33552563 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 9502F68E8BD34D358CA55298E2DEAE19 Ref B: PNQ231110906040 Ref C: 2025-11-12T08:53:20Z' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp ingress traffic set - Connection: - - keep-alive - ParameterSetName: - - -g -n --revision-weight --revision-weight - User-Agent: - - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) - AZURECLI/2.80.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad?api-version=2025-07-01&azureAsyncOperation=true&t=638985343931678940&c=MIIHhzCCBm-gAwIBAgITfAlbAuHJVGlWt5nvPQAACVsC4TANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDIwMDYxMjI2WhcNMjYwNDE4MDYxMjI2WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMy2rMZQG9krGl8uVrHhOxWEeSefupCGj4W39OG3hmsgHCdpJoVTYNkhCBBXKDiMPz4qOGTNo9ZuEtdDIgrgURZfB_yqvkFPpluc8G1zPLN-jiYbtj5pMAKuYgLO7iMfbKCCV7GjTrHV_wumSY9mtoHlkCrcXhhzpkJA87IHj7UrwyzONRzDo4k0KGqw1e7uF2ASiU9K59IwNCK5OTyLIUYEniYOtRG3wTnTc5pKlMy2k_Wx_amkYwkngAxaNLr0Ko3_0IuWpgJW3FSQcVUBFthJ7YaPIymOzcBcjMLnTbrKuafUxO7gaqmq92b3sH9sseHWY-yS7f2OUzfvriS2v30CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTM1P5CztWwZKGV3-19qUWbS5-_VzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAE_nquBJaTSjdrhuWIvf7jbzVTVN9KtuKhiQNPblrMkYM5uA67arOdlSEKEogtsLLB9GPFPWwmmq9Nsn0hmsMypp1Fgy48ftWQlps41mOpiJEpIQ-Cmtp8thUJDrIiC6wU-9vUJlQqpR5f-tcaLrf5PVBs_XtvDONWbtCozHcF4VUEU9xrXMVNagQrUCUeogmrfJjGO500pGdqUNfY2K8STWDI2u7_ByHN6OpmStYPS6ywL3_zEji1FKMpB1quLdBQzmKwy2YucRyNqBcV3ZdI4XrdPpjBRXPFaQobVujng1uOKkfzAEKgp3eUhTlz4N_EL8OtQJfwvy94HxDT6PZm0&s=RNamPPqDeVYdPwSxYNvTc6ALr9LZV-kDLcdsaWKEn-_kvd_S2YpQtpO-ZoNALIr_NLXIdxVT29Mrjj0GrKRixSc9ihRh7XFoG7FQri2LqFPPHhTTBcAKAI-0pLYqZhyqS63d1aDC5gpoksCeO1J9xgMMFa1ufD-jTE-Jy9XRbIVM5Y3RFoSGqpkrU6gN_2q-ekF7cAKFI4rSn7hue8wLptuN2onmDILFqcHxcg-hqdIqXSUZIBMah7yxE6ynOXFiM43cVHVl4GEI6OELGJztik8cX0_xdf-b2lLWnHVAvMgvnAXsRz01VjMbf71RWYkoyydFBjzXxk4OKRQhTG36NQ&h=9qgDq-Dfs4kdSrC-A5WPaEFswkp9mbYw3SmPDqNDYBs - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/400ee3cb-b086-4efa-9c1a-8882a4004dad","name":"400ee3cb-b086-4efa-9c1a-8882a4004dad","status":"Succeeded","startTime":"2025-11-12T08:53:13.1519427"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c9020119-92e9-451a-8a6b-9be4eb82c748","name":"c9020119-92e9-451a-8a6b-9be4eb82c748","status":"Succeeded","startTime":"2025-11-13T07:26:26.8048029"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3594,7 +3536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:24 GMT + - Thu, 13 Nov 2025 07:26:37 GMT expires: - '-1' pragma: @@ -3608,11 +3550,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/westindia/5c531c19-206d-421d-aee7-4ad8a8d2df44 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/a1b13c22-9865-4f45-852d-e9758762cad3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CEC6BCCC535D457C93AA4A5A8081C6CA Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:24Z' + - 'Ref A: A61687964B6F41AB82D1D47EA94339CD Ref B: SG2AA1070306031 Ref C: 2025-11-13T07:26:36Z' x-powered-by: - ASP.NET status: @@ -3639,7 +3581,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null},"registries":null,"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null,"identitySettings":[]},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3649,11 +3591,11 @@ interactions: cache-control: - no-cache content-length: - - '3580' + - '3584' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:25 GMT + - Thu, 13 Nov 2025 07:26:38 GMT expires: - '-1' pragma: @@ -3669,7 +3611,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 10A88C0A75D143DC84BF687C456F489E Ref B: PNQ231110907034 Ref C: 2025-11-12T08:53:24Z' + - 'Ref A: 56C03C708B184E1AA6E9DBE2CCC1FD11 Ref B: SG2AA1070303052 Ref C: 2025-11-13T07:26:38Z' x-powered-by: - ASP.NET status: @@ -3692,11 +3634,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3706,11 +3648,11 @@ interactions: cache-control: - no-cache content-length: - - '3737' + - '3741' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:26 GMT + - Thu, 13 Nov 2025 07:26:40 GMT expires: - '-1' pragma: @@ -3726,7 +3668,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4973F4BFA70045B5ACAE7445FE3C36FB Ref B: PNQ231110907023 Ref C: 2025-11-12T08:53:26Z' + - 'Ref A: 50387B0507144222AED2A62090356F0B Ref B: SG2AA1070305062 Ref C: 2025-11-13T07:26:40Z' x-powered-by: - ASP.NET status: @@ -3749,11 +3691,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3763,11 +3705,11 @@ interactions: cache-control: - no-cache content-length: - - '3737' + - '3741' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:27 GMT + - Thu, 13 Nov 2025 07:26:41 GMT expires: - '-1' pragma: @@ -3783,7 +3725,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 22BBD06D1200441DA55771F4B3B243A6 Ref B: PNQ231110907040 Ref C: 2025-11-12T08:53:27Z' + - 'Ref A: 1E61A8C6FE3F41E6A7AEF64C72259036 Ref B: SG2AA1070301025 Ref C: 2025-11-13T07:26:42Z' x-powered-by: - ASP.NET status: @@ -3806,11 +3748,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3820,11 +3762,11 @@ interactions: cache-control: - no-cache content-length: - - '3737' + - '3741' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:28 GMT + - Thu, 13 Nov 2025 07:26:42 GMT expires: - '-1' pragma: @@ -3840,7 +3782,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4BF9479004E64DDBAD3FFD50893CC15D Ref B: PNQ231110906029 Ref C: 2025-11-12T08:53:28Z' + - 'Ref A: 4F3EE9D3F9AF4564A507317F5DBA0412 Ref B: SG2AA1070304052 Ref C: 2025-11-13T07:26:43Z' x-powered-by: - ASP.NET status: @@ -3878,7 +3820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:28 GMT + - Thu, 13 Nov 2025 07:26:43 GMT expires: - '-1' pragma: @@ -3892,11 +3834,11 @@ interactions: x-ms-failure-cause: - service x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/9b8fce7b-e847-47c7-bfc1-18d71a590351 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/3be50f3f-ebaf-4222-b6c4-e63d2535f2ae x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FF1AF4B3CA48492C9093CAB052EF089C Ref B: PNQ231110906036 Ref C: 2025-11-12T08:53:28Z' + - 'Ref A: 21BBA7E80CEA4E27BF1ED09121FC7FA4 Ref B: SG2AA1070302054 Ref C: 2025-11-13T07:26:43Z' x-powered-by: - ASP.NET status: @@ -3919,11 +3861,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3933,11 +3875,11 @@ interactions: cache-control: - no-cache content-length: - - '3737' + - '3741' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:30 GMT + - Thu, 13 Nov 2025 07:26:45 GMT expires: - '-1' pragma: @@ -3953,7 +3895,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 301B6782D57747F7BF5C0E983CF632A8 Ref B: PNQ231110907054 Ref C: 2025-11-12T08:53:30Z' + - 'Ref A: 9B40E31BE76B41479E893C99E8B58602 Ref B: SG2AA1070303040 Ref C: 2025-11-13T07:26:45Z' x-powered-by: - ASP.NET status: @@ -3976,11 +3918,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -3990,11 +3932,11 @@ interactions: cache-control: - no-cache content-length: - - '3737' + - '3741' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:31 GMT + - Thu, 13 Nov 2025 07:26:46 GMT expires: - '-1' pragma: @@ -4010,7 +3952,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 444748C2A6954B728482462305908E89 Ref B: PNQ231110908042 Ref C: 2025-11-12T08:53:30Z' + - 'Ref A: 3C777707AAA64DF4972872D779D795A6 Ref B: SG2AA1070306054 Ref C: 2025-11-13T07:26:45Z' x-powered-by: - ASP.NET status: @@ -4033,21 +3975,21 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--dk1ejrs/functions?api-version=2025-10-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--8optwbm/functions?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--dk1ejrs/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--8optwbm/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '513' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:31 GMT + - Thu, 13 Nov 2025 07:26:47 GMT expires: - '-1' pragma: @@ -4061,11 +4003,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/0bb1dbcd-ef76-4e39-9f99-4b94ecd49769 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/974f6728-6b9b-4ef9-8b56-31e218d796d1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C6FAF371CE054D43B12E764B3ABD690E Ref B: PNQ231110909025 Ref C: 2025-11-12T08:53:31Z' + - 'Ref A: A5F57B700FAA40E28633754D5376C98D Ref B: SG2AA1070304031 Ref C: 2025-11-13T07:26:47Z' x-powered-by: - ASP.NET status: @@ -4088,11 +4030,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4102,11 +4044,11 @@ interactions: cache-control: - no-cache content-length: - - '3737' + - '3741' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:31 GMT + - Thu, 13 Nov 2025 07:26:48 GMT expires: - '-1' pragma: @@ -4122,7 +4064,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B1E4904A46234F49A39290E274135042 Ref B: PNQ231110909062 Ref C: 2025-11-12T08:53:32Z' + - 'Ref A: F73D3B02853E488DB0A1DD08F0E5135B Ref B: SG2AA1070305060 Ref C: 2025-11-13T07:26:48Z' x-powered-by: - ASP.NET status: @@ -4145,11 +4087,11 @@ interactions: - python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) AZURECLI/2.80.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-02-02-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002?api-version=2025-10-02-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/funcapp000002","name":"funcapp000002","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-12T08:51:36.3948688","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-12T08:53:12.7147772"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","128.85.213.51"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' + US 2","systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-11-13T07:24:41.8308559","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-11-13T07:26:26.0110073"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/client.env_rg_eastus2/providers/Microsoft.App/managedEnvironments/env-eastus2","workloadProfileName":"Consumption","patchingMode":"Automatic","outboundIpAddresses":["20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","4.153.163.131","20.36.242.179","20.36.243.222","20.36.243.227","20.36.243.208","128.85.230.186","4.153.163.156","20.36.242.169","4.153.163.201","20.36.244.19","20.97.133.137","20.36.244.21","20.36.243.201","128.85.220.176","128.85.212.114","135.18.214.171","20.85.91.213","128.85.239.223","4.153.23.192","4.153.23.210","4.153.23.204","20.94.122.99","4.153.23.173","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.161.216.31"],"latestRevisionName":"funcapp000002--0000001","latestReadyRevisionName":"funcapp000002--0000001","latestRevisionFqdn":"funcapp000002--0000001.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","customDomainVerificationId":"FE6A6A149A36B29FC8EBC91FBF42E07493AC7243675310C0EF2A960D2E6724C4","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","targetLabel":"","revisionTransitionThreshold":null,"ingress":{"fqdn":"funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"funcapp000002--0000001","weight":50}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":null,"identitySettings":[],"dapr":null,"runtime":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0","imageType":"ContainerImage","name":"funcapp000002","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"cooldownPeriod":300,"pollingInterval":30,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/funcapp000002/eventstream","delegatedIdentities":[]},"identity":{"type":"None"},"kind":"functionapp"}' headers: api-supported-versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, @@ -4159,11 +4101,11 @@ interactions: cache-control: - no-cache content-length: - - '3737' + - '3741' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:32 GMT + - Thu, 13 Nov 2025 07:26:49 GMT expires: - '-1' pragma: @@ -4179,7 +4121,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4F958E6D4C9542B4876D2314C156EA4D Ref B: PNQ231110906036 Ref C: 2025-11-12T08:53:32Z' + - 'Ref A: 17609EADEBF648129DF14C630F379FD1 Ref B: SG2AA1070306029 Ref C: 2025-11-13T07:26:49Z' x-powered-by: - ASP.NET status: @@ -4205,18 +4147,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions?api-version=2025-10-02-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.livelyisland-cf4f1366.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/funcapp000002/revisions/funcapp000002--0000001/functions/HttpExample","type":"Microsoft.App/containerApps/revisions/functions","location":"eastus2","properties":{"name":"HttpExample","triggerType":"httpTrigger","invokeUrlTemplate":"https://funcapp000002.wonderfulstone-07a0a4d9.eastus2.azurecontainerapps.io/api/httpexample","language":"dotnet-isolated","isDisabled":false}}]}' headers: api-supported-versions: - 2025-10-02-preview cache-control: - no-cache content-length: - - '513' + - '515' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Nov 2025 08:53:33 GMT + - Thu, 13 Nov 2025 07:26:49 GMT expires: - '-1' pragma: @@ -4230,11 +4172,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/466eb050-5a0b-4bf1-b7d4-99bbff0fb5f2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=3654bcc5-40c7-48ca-9fd6-da189aa1b7e4/eastus2/04356b91-ec4e-4749-ac40-01696508f46c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EF7C447B27544740B67645571B4E18E0 Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:33Z' + - 'Ref A: 6B0C0B7F96B74B618A6400252BF5BA38 Ref B: SG2AA1070303031 Ref C: 2025-11-13T07:26:50Z' x-powered-by: - ASP.NET status: diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py index 1fa972be0cc..ed1269eefa3 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -32,8 +32,6 @@ def __init__(self, *arg, **kwargs): super().__init__(*arg, random_config_dir=True, **kwargs) cmd = ['azdev', 'extension', 'add', 'application-insights'] run(cmd, check=True) - # cmd = ['azdev', 'extension', 'add', 'azure-mgmt-applicationinsights'] - # run(cmd, check=True) sleep(120) From 996b6f1b76e191dc6fc6343328847b0ce34f5792 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Thu, 13 Nov 2025 08:49:33 +0000 Subject: [PATCH 14/15] removing mistakenly added file --- et --hard HEAD@{1} | 459 --------------------------------------------- 1 file changed, 459 deletions(-) delete mode 100644 et --hard HEAD@{1} diff --git a/et --hard HEAD@{1} b/et --hard HEAD@{1} deleted file mode 100644 index b91499ccac5..00000000000 --- a/et --hard HEAD@{1} +++ /dev/null @@ -1,459 +0,0 @@ -8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{0}: reset: moving to origin/function-changes -de502ca91 HEAD@{1}: commit: updates to tests due to version update -008a35801 (origin/function-cli) HEAD@{2}: commit: version update -7dcfadbbd HEAD@{3}: commit (merge): merging with main -8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{4}: reset: moving to HEAD~1 -63c736b06 HEAD@{5}: reset: moving to HEAD -63c736b06 HEAD@{6}: commit (merge): Merge branch 'main' into function-changes -8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{7}: checkout: moving from main to function-changes -59814d07f (upstream/main, upstream/HEAD, origin/main, origin/HEAD, main) HEAD@{8}: pull upstream main: Fast-forward -aad8ba520 HEAD@{9}: checkout: moving from function-changes to main -8f386d01b (HEAD -> function-changes, origin/function-changes) HEAD@{10}: pull origin function-changes: Fast-forward -379dedb3a HEAD@{11}: reset: moving to HEAD -379dedb3a HEAD@{12}: reset: moving to origin/function-changes -7dccb4fb2 (origin/function-tests) HEAD@{13}: commit: adding quotes with *** -b4106dbfd HEAD@{14}: commit: test extension add app-insights -7acaf7c65 HEAD@{15}: commit: adding app insight extension -025c3be89 HEAD@{16}: commit: tests -379dedb3a HEAD@{17}: reset: moving to origin/function-changes -a5dda6485 HEAD@{18}: commit: removing secrets from test recordings -379d6601e HEAD@{19}: commit: removing secrets from test recordings -2758b90db HEAD@{20}: reset: moving to HEAD~1 -d0becc4e3 HEAD@{21}: commit: removing secrets from test recordings -2758b90db HEAD@{22}: reset: moving to HEAD~1 -a5093b4ce HEAD@{23}: commit: removing secrets from test recordings -2758b90db HEAD@{24}: reset: moving to HEAD~1 -6fca276a3 HEAD@{25}: commit: removing secrets from test recordings -2758b90db HEAD@{26}: commit: running tests with requests to management.azure.com endpoint -7a8d14376 HEAD@{27}: commit: modifications to test -253c5256c (origin/function-comments) HEAD@{28}: commit (merge): merging main -47ef9ad27 HEAD@{29}: reset: moving to HEAD -47ef9ad27 HEAD@{30}: checkout: moving from function-changes to function-changes -47ef9ad27 HEAD@{31}: checkout: moving from function-changes to function-changes -47ef9ad27 HEAD@{32}: reset: moving to HEAD -47ef9ad27 HEAD@{33}: commit: fixing style error -9b20d748e HEAD@{34}: commit: resolving comments -fdc29375e HEAD@{35}: checkout: moving from function-temp to function-changes -c01dbdfdc (function-temp) HEAD@{36}: checkout: moving from function-changes to function-temp -fdc29375e HEAD@{37}: checkout: moving from function-temp to function-changes -c01dbdfdc (function-temp) HEAD@{38}: checkout: moving from function-changes to function-temp -fdc29375e HEAD@{39}: checkout: moving from function-temp to function-changes -c01dbdfdc (function-temp) HEAD@{40}: checkout: moving from main to function-temp -aad8ba520 HEAD@{41}: checkout: moving from function-changes to main -fdc29375e HEAD@{42}: checkout: moving from main to function-changes -aad8ba520 HEAD@{43}: reset: moving to HEAD~2 -34fcc6e6c HEAD@{44}: checkout: moving from function-changes to main -fdc29375e HEAD@{45}: commit: resolving comments -aac3e984c HEAD@{46}: commit: resolving some of the comments -c01dbdfdc (function-temp) HEAD@{47}: checkout: moving from main to function-changes -34fcc6e6c HEAD@{48}: checkout: moving from function-changes to main -c01dbdfdc (function-temp) HEAD@{49}: reset: moving to HEAD -c01dbdfdc (function-temp) HEAD@{50}: checkout: moving from main to function-changes -34fcc6e6c HEAD@{51}: checkout: moving from function-changes to main -c01dbdfdc (function-temp) HEAD@{52}: checkout: moving from main to function-changes -34fcc6e6c HEAD@{53}: pull upstream main: Fast-forward -ca876f4ff (tag: containerapp-1.2.0b4) HEAD@{54}: checkout: moving from function-changes to main -c01dbdfdc (function-temp) HEAD@{55}: commit: fixing style errors -fb17f16ea HEAD@{56}: commit: adding all the missing files -ab2615717 HEAD@{57}: commit: Az function cli changes -024f87149 HEAD@{58}: reset: moving to upstream/main -c97f4cfc6 HEAD@{59}: commit: Az function cli changes -024f87149 HEAD@{60}: reset: moving to upstream/main -68b0044fd HEAD@{61}: pull upstream main: Merge made by the 'ort' strategy. -ae8070845 HEAD@{62}: commit: masking secrets -156e82cde HEAD@{63}: commit: masking secrets -ccb2ca8ea HEAD@{64}: commit: fixing formatting issues -6e9feda1a HEAD@{65}: commit (merge): resolving merge conflicts -0400f4e70 HEAD@{66}: checkout: moving from main to function-changes -ca876f4ff (tag: containerapp-1.2.0b4) HEAD@{67}: checkout: moving from function-changes-latest to main -c45ffc273 HEAD@{68}: pull: Merge made by the 'ort' strategy. -31c261f09 HEAD@{69}: commit (merge): resolving merge conflicts -c4e7c3711 HEAD@{70}: checkout: moving from main to function-changes-latest -ca876f4ff (tag: containerapp-1.2.0b4) HEAD@{71}: pull upstream main: Fast-forward -ac57da87f HEAD@{72}: checkout: moving from function-changes to main -dafd802a8 HEAD@{73}: commit: adding tests for keys and invocations related commands -6fe8ff260 HEAD@{74}: pull origin main: Merge made by the 'ort' strategy. -fe5669c9f HEAD@{75}: pull: Merge made by the 'ort' strategy. -3f9c35756 HEAD@{76}: checkout: moving from function-tests to function-changes -4862321e8 (origin/newbranch) HEAD@{77}: checkout: moving from main to function-tests -ac57da87f HEAD@{78}: pull upstream main: Fast-forward -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{79}: checkout: moving from function-changes to main -3f9c35756 HEAD@{80}: commit: adding function keys test -21fd57781 (origin/format-fix) HEAD@{81}: commit: fixing formatting -8d57aa6e9 HEAD@{82}: commit: adding tests -931a8546b HEAD@{83}: merge main: Merge made by the 'ort' strategy. -4862321e8 (origin/newbranch) HEAD@{84}: checkout: moving from main to function-changes -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{85}: checkout: moving from function-changes to main -4862321e8 (origin/newbranch) HEAD@{86}: rebase (abort): returning to refs/heads/function-changes -a89a76b17 HEAD@{87}: commit: resolving merge conflicts -73210ad32 HEAD@{88}: commit: resolving merge conflicts -6fc92d31a HEAD@{89}: commit: resolving merge conflicts -8457fd20a HEAD@{90}: commit: resolving merge conflicts -106720bfe HEAD@{91}: rebase (pick): updating function keys decorator -cb03bf72f HEAD@{92}: commit: resolving merge conflicts -fd53e5b3d HEAD@{93}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -703c6bbee HEAD@{94}: rebase (pick): modifying help description -29fea2a3f HEAD@{95}: rebase (pick): addressing comments -2d8fec89e HEAD@{96}: rebase (pick): correcting params.py file -804ad5f46 HEAD@{97}: rebase (pick): modification to help descriptions -d6a675184 HEAD@{98}: rebase (pick): adding az containerapp functions commands -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{99}: rebase (start): checkout main -4862321e8 (origin/newbranch) HEAD@{100}: checkout: moving from main to function-changes -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{101}: checkout: moving from function-changes to main -4862321e8 (origin/newbranch) HEAD@{102}: rebase (abort): returning to refs/heads/function-changes -4862321e8 (origin/newbranch) HEAD@{103}: rebase (abort): returning to refs/heads/function-changes -4862321e8 (origin/newbranch) HEAD@{104}: checkout: moving from main to function-changes -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{105}: checkout: moving from 5030f3d0cba69c2abcc96349602c798a867bfd04 to main -5030f3d0c HEAD@{106}: commit: resolving merge conflicts -e5da8d994 HEAD@{107}: commit: resolving merge conflicts -0d3c0093b HEAD@{108}: commit: resolving merge conflicts -bc9e30b3b HEAD@{109}: rebase (pick): updating function keys decorator -84426bbfb HEAD@{110}: commit: resolving merge conflicts -b7bb47540 HEAD@{111}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -cf0903667 HEAD@{112}: rebase (pick): modifying help description -572b65925 HEAD@{113}: rebase (pick): addressing comments -0c1d742c6 HEAD@{114}: rebase (pick): correcting params.py file -a19bd95de HEAD@{115}: rebase (pick): modification to help descriptions -03a248162 HEAD@{116}: rebase (pick): adding az containerapp functions commands -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{117}: rebase (start): checkout main -4862321e8 (origin/newbranch) HEAD@{118}: checkout: moving from main to function-changes -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{119}: checkout: moving from function-changes to main -4862321e8 (origin/newbranch) HEAD@{120}: rebase (abort): returning to refs/heads/function-changes -bed7bc0a2 HEAD@{121}: commit: resolving merge conflicts -3f40981bd HEAD@{122}: commit: resolving merge conflicts -290b609f3 HEAD@{123}: rebase (continue): Add functionapp invocations summary and traces commands -621c78427 HEAD@{124}: rebase (pick): updating function keys decorator -71e64689b HEAD@{125}: rebase (continue): adding az containerapp function keys commands -dd033e14a HEAD@{126}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -3e206902a HEAD@{127}: rebase (pick): modifying help description -d3835b787 HEAD@{128}: rebase (pick): addressing comments -c3b0d9d33 HEAD@{129}: rebase (pick): correcting params.py file -1d5f20d45 HEAD@{130}: rebase (pick): modification to help descriptions -642bef297 HEAD@{131}: rebase (pick): adding az containerapp functions commands -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{132}: rebase (start): checkout main -4862321e8 (origin/newbranch) HEAD@{133}: checkout: moving from function-tests to function-changes -4862321e8 (origin/newbranch) HEAD@{134}: rebase (abort): returning to refs/heads/function-tests -b7d5978be HEAD@{135}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -e71e1cbbc HEAD@{136}: rebase (pick): modifying help description -b425cc847 HEAD@{137}: rebase (pick): addressing comments -97387e027 HEAD@{138}: rebase (pick): correcting params.py file -acba21c21 HEAD@{139}: rebase (pick): modification to help descriptions -207a1932e HEAD@{140}: rebase (pick): adding az containerapp functions commands -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{141}: rebase (start): checkout main -4862321e8 (origin/newbranch) HEAD@{142}: checkout: moving from main to function-tests -f6867a9ce (tag: redisenterprise-1.2.2) HEAD@{143}: pull upstream main: Fast-forward -128dd907b (tag: confcom-1.2.8) HEAD@{144}: checkout: moving from function-tests to main -4862321e8 (origin/newbranch) HEAD@{145}: checkout: moving from function-changes to function-tests -4862321e8 (origin/newbranch) HEAD@{146}: reset: moving to HEAD~2 -4f2484e75 HEAD@{147}: checkout: moving from main to function-changes -128dd907b (tag: confcom-1.2.8) HEAD@{148}: checkout: moving from newbranch to main -4862321e8 (origin/newbranch) HEAD@{149}: reset: moving to HEAD~2 -4f2484e75 HEAD@{150}: checkout: moving from function-changes to newbranch -ab86b12a4 HEAD@{151}: checkout: moving from main to function-changes -128dd907b (tag: confcom-1.2.8) HEAD@{152}: checkout: moving from newbranch to main -dd8064040 HEAD@{153}: reset: moving to HEAD -dd8064040 HEAD@{154}: revert: Reapply "fixing issue with an integration test" -7da63c4bb HEAD@{155}: reset: moving to HEAD -7da63c4bb HEAD@{156}: revert: Revert "fixing issue with an integration test" -2b2c22347 (origin/shahkhushi/format-fix) HEAD@{157}: commit: fixing issue with an integration test -4cde88da1 HEAD@{158}: commit: fixing linter error -1016c1743 HEAD@{159}: commit: fixing formatting issues -b14dc66bc HEAD@{160}: commit: deleting mistakenly added files -2453b2ce2 HEAD@{161}: commit (cherry-pick): fixing linter and style errors -30093f637 HEAD@{162}: reset: moving to 30093f6375499e3676e37a02ce96161d57594435 -30093f637 HEAD@{163}: checkout: moving from newbranch to newbranch -30093f637 HEAD@{164}: reset: moving to 30093f6375499e3676e37a02ce96161d57594435 -30093f637 HEAD@{165}: checkout: moving from main to newbranch -128dd907b (tag: confcom-1.2.8) HEAD@{166}: checkout: moving from function-changes to main -ab86b12a4 HEAD@{167}: checkout: moving from main to function-changes -128dd907b (tag: confcom-1.2.8) HEAD@{168}: checkout: moving from function-changes to main -ab86b12a4 HEAD@{169}: commit: fixing linter and style errors -5ddb8de36 (origin/shahkhushi/functionaca-cli) HEAD@{170}: commit: addressing comments -36b39c388 HEAD@{171}: rebase (abort): returning to refs/heads/function-changes -ecd7d3d8d HEAD@{172}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -fa5537d7b HEAD@{173}: rebase (pick): modifying help description -acee28646 HEAD@{174}: rebase (pick): addressing comments -418a70aca HEAD@{175}: rebase (pick): correcting params.py file -434beffc1 HEAD@{176}: rebase (pick): modification to help descriptions -968f62c3d HEAD@{177}: rebase (pick): adding az containerapp functions commands -128dd907b (tag: confcom-1.2.8) HEAD@{178}: rebase (start): checkout main -36b39c388 HEAD@{179}: rebase (abort): returning to refs/heads/function-changes -4db6907b2 HEAD@{180}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -8d169b9f7 HEAD@{181}: rebase (pick): modifying help description -d34fbe9d6 HEAD@{182}: rebase (pick): addressing comments -7403f4fad HEAD@{183}: rebase (pick): correcting params.py file -2e02ab3b3 HEAD@{184}: rebase (pick): modification to help descriptions -d72d4b671 HEAD@{185}: rebase (pick): adding az containerapp functions commands -128dd907b (tag: confcom-1.2.8) HEAD@{186}: rebase (start): checkout main -36b39c388 HEAD@{187}: pull origin function-changes: Fast-forward -d3d2a403b (origin/functionaca-cli) HEAD@{188}: rebase (abort): returning to refs/heads/function-changes -e5823004a HEAD@{189}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -054d2934d HEAD@{190}: rebase (pick): modifying help description -b0f65d5ee HEAD@{191}: rebase (pick): addressing comments -e7d7e2458 HEAD@{192}: rebase (pick): correcting params.py file -d247ef2fc HEAD@{193}: rebase (pick): modification to help descriptions -90fe4e638 HEAD@{194}: rebase (pick): adding az containerapp functions commands -128dd907b (tag: confcom-1.2.8) HEAD@{195}: rebase (start): checkout main -d3d2a403b (origin/functionaca-cli) HEAD@{196}: rebase (abort): returning to refs/heads/function-changes -2d6cb55d3 HEAD@{197}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -aef83e27b HEAD@{198}: rebase (pick): modifying help description -a33acbb53 HEAD@{199}: rebase (pick): addressing comments -b4794440c HEAD@{200}: rebase (pick): correcting params.py file -d994dd0cc HEAD@{201}: rebase (pick): modification to help descriptions -84be6b966 HEAD@{202}: rebase (pick): adding az containerapp functions commands -128dd907b (tag: confcom-1.2.8) HEAD@{203}: rebase (start): checkout main -d3d2a403b (origin/functionaca-cli) HEAD@{204}: checkout: moving from main to function-changes -128dd907b (tag: confcom-1.2.8) HEAD@{205}: reset: moving to upstream/main -128dd907b (tag: confcom-1.2.8) HEAD@{206}: checkout: moving from function-changes to main -d3d2a403b (origin/functionaca-cli) HEAD@{207}: rebase (abort): returning to refs/heads/function-changes -556d74801 HEAD@{208}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -565013c56 HEAD@{209}: rebase (pick): modifying help description -411ade849 HEAD@{210}: rebase (pick): addressing comments -8e27cee03 HEAD@{211}: rebase (pick): correcting params.py file -840eb29a9 HEAD@{212}: rebase (pick): modification to help descriptions -fab0f5f0e HEAD@{213}: rebase (pick): adding az containerapp functions commands -128dd907b (tag: confcom-1.2.8) HEAD@{214}: rebase (start): checkout main -d3d2a403b (origin/functionaca-cli) HEAD@{215}: checkout: moving from main to function-changes -128dd907b (tag: confcom-1.2.8) HEAD@{216}: pull upstream main: Fast-forward -cd5decbfa HEAD@{217}: checkout: moving from function-changes to main -d3d2a403b (origin/functionaca-cli) HEAD@{218}: commit: several minor code improvements without functionality changes -e23a6e0a7 HEAD@{219}: commit: adding transformers for ouput formatting and adding check for kind -41bc7efd9 HEAD@{220}: reset: moving to HEAD~1 -0bc26da5d HEAD@{221}: reset: moving to HEAD~1 -2e2bdb350 HEAD@{222}: reset: moving to HEAD~1 -55b7e4456 HEAD@{223}: commit: adding check for function on aca -2e2bdb350 HEAD@{224}: commit: adding check for kind being function app and some transformers for keys output -0bc26da5d HEAD@{225}: commit: adding table transformers for keys related commands -41bc7efd9 HEAD@{226}: pull: Fast-forward -bb913c095 HEAD@{227}: pull origin function-changes: Fast-forward -1168a8e2a HEAD@{228}: commit: adding support for output formats and adding limit parameter to invocations traces -a720b4159 HEAD@{229}: commit: adding support for output formatting -35bf04acc HEAD@{230}: commit: fixes for invocations -457afd36d HEAD@{231}: commit: nit changes to help.py -30e4b09be HEAD@{232}: commit: modifications to help.py -6f92a800e HEAD@{233}: commit: a minor fix -c417b1eae HEAD@{234}: pull origin function-changes: Fast-forward -faebfed47 HEAD@{235}: reset: moving to HEAD~1 -aacf9e897 HEAD@{236}: commit: minor fix -faebfed47 HEAD@{237}: commit: some minor fixes -35a180526 HEAD@{238}: pull origin function-changes: Fast-forward -8b0630607 HEAD@{239}: checkout: moving from functionaca-keys to function-changes -8b7e92f82 HEAD@{240}: checkout: moving from functionaca-getlist to functionaca-keys -42b0cd4c7 HEAD@{241}: checkout: moving from functionaca-keys to functionaca-getlist -8b7e92f82 HEAD@{242}: checkout: moving from functionaca-getlist to functionaca-keys -42b0cd4c7 HEAD@{243}: checkout: moving from functionaca-keys to functionaca-getlist -8b7e92f82 HEAD@{244}: checkout: moving from function-copy-test to functionaca-keys -4451ac31c HEAD@{245}: commit: - -8b0630607 HEAD@{246}: checkout: moving from function-changes to function-copy-test -8b0630607 HEAD@{247}: pull origin function-changes: Fast-forward -79d7cc1b1 HEAD@{248}: checkout: moving from functionaca-keys to function-changes -8b7e92f82 HEAD@{249}: commit: reverting api version modifications -18b3af76e HEAD@{250}: checkout: moving from functionaca-getlist to functionaca-keys -42b0cd4c7 HEAD@{251}: checkout: moving from functionaca-keys to functionaca-getlist -18b3af76e HEAD@{252}: commit: chagnes related to imports and api version -5542ef5e8 (origin/functionaca-keys) HEAD@{253}: checkout: moving from main to functionaca-keys -cd5decbfa HEAD@{254}: pull upstream main: Fast-forward -e0c635720 (tag: connectedk8s-1.10.9) HEAD@{255}: checkout: moving from functionaca-keys to main -5542ef5e8 (origin/functionaca-keys) HEAD@{256}: commit: adding validations for parameters -f4ba4ec11 HEAD@{257}: commit: adding checks for revision name and retrival of replicas -bb2c76324 HEAD@{258}: commit: modifications to function keys decorator -3aa229329 HEAD@{259}: commit: modificatins related to function keys cli commands -a3d5643dd HEAD@{260}: pull origin function-changes: Fast-forward -79d7cc1b1 HEAD@{261}: checkout: moving from function-changes to functionaca-keys -79d7cc1b1 HEAD@{262}: commit (merge): resolving merge conflicts -a34da44c2 HEAD@{263}: checkout: moving from main to function-changes -e0c635720 (tag: connectedk8s-1.10.9) HEAD@{264}: checkout: moving from functionaca-getlist to main -42b0cd4c7 HEAD@{265}: commit: modifications to help descriptions -852994d0a HEAD@{266}: commit: adding tests -0107fda93 HEAD@{267}: rebase (finish): returning to refs/heads/functionaca-getlist -0107fda93 HEAD@{268}: rebase (pick): modifying the command to be az containerapp function instead of az containerapp functions -c1e4db710 HEAD@{269}: rebase (pick): modifying help description -5e514c81a HEAD@{270}: rebase (pick): addressing comments -a6f740cfb HEAD@{271}: rebase (pick): correcting params.py file -103347cd1 HEAD@{272}: rebase (pick): modification to help descriptions -dd1103250 HEAD@{273}: rebase (pick): adding az containerapp functions commands -e0c635720 (tag: connectedk8s-1.10.9) HEAD@{274}: rebase (start): checkout main -0986024dd HEAD@{275}: checkout: moving from main to functionaca-getlist -e0c635720 (tag: connectedk8s-1.10.9) HEAD@{276}: pull upstream main: Fast-forward -cd79464cd (tag: spring-1.28.4) HEAD@{277}: checkout: moving from functionaca-keys to main -b9c8a4b10 HEAD@{278}: commit: updating function keys decorator -88ab1f6e2 HEAD@{279}: checkout: moving from functionaca-getlist to functionaca-keys -0986024dd HEAD@{280}: commit: modifying the command to be az containerapp function instead of az containerapp functions -e42a0f6cf HEAD@{281}: checkout: moving from functionaca-keys to functionaca-getlist -88ab1f6e2 HEAD@{282}: commit: adding az containerapp function keys commands -cd79464cd (tag: spring-1.28.4) HEAD@{283}: checkout: moving from functionaca-getlist to functionaca-keys -e42a0f6cf HEAD@{284}: commit: modifying help description -95e3345ee HEAD@{285}: checkout: moving from functionaca-keys to functionaca-getlist -cd79464cd (tag: spring-1.28.4) HEAD@{286}: checkout: moving from main to functionaca-keys -cd79464cd (tag: spring-1.28.4) HEAD@{287}: checkout: moving from functionaca-getlist to main -95e3345ee HEAD@{288}: commit: addressing comments -94cf376ac HEAD@{289}: commit: correcting params.py file -a9393d88b HEAD@{290}: checkout: moving from main to functionaca-getlist -cd79464cd (tag: spring-1.28.4) HEAD@{291}: checkout: moving from functionaca-getlist to main -a9393d88b HEAD@{292}: commit: modification to help descriptions -4dc363f59 HEAD@{293}: rebase (finish): returning to refs/heads/functionaca-getlist -4dc363f59 HEAD@{294}: rebase (pick): adding az containerapp functions commands -cd79464cd (tag: spring-1.28.4) HEAD@{295}: rebase (start): checkout main -1b76f6aa8 HEAD@{296}: checkout: moving from main to functionaca-getlist -cd79464cd (tag: spring-1.28.4) HEAD@{297}: pull upstream main: Fast-forward -80dc0e2cc (tag: amg-2.8.1) HEAD@{298}: checkout: moving from functionaca-getlist to main -1b76f6aa8 HEAD@{299}: commit: adding az containerapp functions commands -80dc0e2cc (tag: amg-2.8.1) HEAD@{300}: checkout: moving from main to functionaca-getlist -80dc0e2cc (tag: amg-2.8.1) HEAD@{301}: pull upstream main: Fast-forward -977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{302}: checkout: moving from functionaca-up to main -d42a7aeb1 (origin/functionaca-up) HEAD@{303}: rebase (finish): returning to refs/heads/functionaca-up -d42a7aeb1 (origin/functionaca-up) HEAD@{304}: rebase (pick): making kind argument as enum instead of string -75bce5cb6 HEAD@{305}: rebase (pick): fixing linter error -433528507 HEAD@{306}: rebase (pick): updating argument context of kind argument -ba0f9c3e0 HEAD@{307}: rebase (pick): modifying tests to run in playback mode -cc72f7348 HEAD@{308}: rebase (pick): updating help description of container app for kind argument -898098353 HEAD@{309}: rebase (pick): updating help description -683bb39b2 HEAD@{310}: rebase (pick): modifications with the tests -6dd5b0d7b HEAD@{311}: rebase (pick): adding tests -400db39f2 HEAD@{312}: rebase (pick): fixing a mistake with help description -6e45529eb HEAD@{313}: rebase (pick): adding tests -4965acc46 HEAD@{314}: rebase (pick): rebase commit -977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{315}: rebase (start): checkout main -3738ae691 HEAD@{316}: checkout: moving from main to functionaca-up -977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{317}: rebase: checkout main -3738ae691 HEAD@{318}: checkout: moving from main to functionaca-up -977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{319}: rebase: checkout main -3738ae691 HEAD@{320}: checkout: moving from main to functionaca-up -977f14e31 (tag: workload-orchestration-3.0.0) HEAD@{321}: pull upstream main: Fast-forward -21199ad6b (tag: neon-1.0.0b6) HEAD@{322}: checkout: moving from functionaca-up to main -3738ae691 HEAD@{323}: commit: making kind argument as enum instead of string -c82737b96 HEAD@{324}: commit: fixing linter error -648398cd2 HEAD@{325}: rebase (finish): returning to refs/heads/functionaca-up -648398cd2 HEAD@{326}: rebase (pick): updating argument context of kind argument -6e97797f2 HEAD@{327}: rebase (pick): modifying tests to run in playback mode -5a0199db1 HEAD@{328}: rebase (pick): updating help description of container app for kind argument -0605665fc HEAD@{329}: rebase (pick): updating help description -fe233bf1f HEAD@{330}: rebase (pick): modifications with the tests -80a241541 HEAD@{331}: rebase (pick): adding tests -a6327e1aa HEAD@{332}: rebase (pick): fixing a mistake with help description -6b781b420 HEAD@{333}: rebase (pick): adding tests -2f0823630 HEAD@{334}: rebase (pick): rebase commit -21199ad6b (tag: neon-1.0.0b6) HEAD@{335}: rebase (start): checkout main -525d8f5f9 HEAD@{336}: checkout: moving from main to functionaca-up -21199ad6b (tag: neon-1.0.0b6) HEAD@{337}: pull upstream main: Fast-forward -5d9994515 HEAD@{338}: checkout: moving from functionaca-up to main -525d8f5f9 HEAD@{339}: commit: updating argument context of kind argument -b082e363b HEAD@{340}: rebase (finish): returning to refs/heads/functionaca-up -b082e363b HEAD@{341}: rebase (pick): modifying tests to run in playback mode -78c5f0699 HEAD@{342}: rebase (pick): updating help description of container app for kind argument -b035e36ef HEAD@{343}: rebase (pick): updating help description -d9b6dc106 HEAD@{344}: rebase (pick): modifications with the tests -a1df6da6d HEAD@{345}: rebase (pick): adding tests -d1434cf0f HEAD@{346}: rebase (pick): fixing a mistake with help description -1ed4797f8 HEAD@{347}: rebase (pick): adding tests -594f797c7 HEAD@{348}: rebase (pick): rebase commit -5d9994515 HEAD@{349}: rebase (start): checkout main -b78322969 HEAD@{350}: checkout: moving from main to functionaca-up -5d9994515 HEAD@{351}: pull upstream main: Fast-forward -e74bd067d (tag: aks-agent-1.0.0b1) HEAD@{352}: checkout: moving from functionaca-up to main -b78322969 HEAD@{353}: commit: modifying tests to run in playback mode -d9c75c4fa HEAD@{354}: rebase (finish): returning to refs/heads/functionaca-up -d9c75c4fa HEAD@{355}: rebase (pick): updating help description of container app for kind argument -7991d4e5c HEAD@{356}: rebase (pick): updating help description -ec73d3265 HEAD@{357}: rebase (pick): modifications with the tests -0952444df HEAD@{358}: rebase (pick): adding tests -5b339c435 HEAD@{359}: rebase (pick): fixing a mistake with help description -9fddea88a HEAD@{360}: rebase (pick): adding tests -27f54a07e HEAD@{361}: rebase (pick): rebase commit -e74bd067d (tag: aks-agent-1.0.0b1) HEAD@{362}: rebase (start): checkout main -510acd922 HEAD@{363}: checkout: moving from main to functionaca-up -e74bd067d (tag: aks-agent-1.0.0b1) HEAD@{364}: pull upstream main: Fast-forward -8f6f15dcb HEAD@{365}: checkout: moving from functionaca-up to main -510acd922 HEAD@{366}: commit: updating help description of container app for kind argument -a690a4ab4 HEAD@{367}: rebase (finish): returning to refs/heads/functionaca-up -a690a4ab4 HEAD@{368}: rebase (pick): updating help description -3f0310e63 HEAD@{369}: rebase (pick): modifications with the tests -2928465ca HEAD@{370}: rebase (pick): adding tests -af57c287c HEAD@{371}: rebase (pick): fixing a mistake with help description -f0ba70af6 HEAD@{372}: rebase (pick): adding tests -8e5ad852f HEAD@{373}: commit: rebase commit -8f6f15dcb HEAD@{374}: rebase (start): checkout main -6282f8684 HEAD@{375}: rebase (abort): returning to refs/heads/functionaca-up -8f6f15dcb HEAD@{376}: rebase (start): checkout main -6282f8684 HEAD@{377}: rebase (abort): returning to refs/heads/functionaca-up -6282f8684 HEAD@{378}: rebase (abort): returning to refs/heads/functionaca-up -6282f8684 HEAD@{379}: checkout: moving from main to functionaca-up -8f6f15dcb HEAD@{380}: checkout: moving from 8f6f15dcb92de73b4e0f5cd5173bf2b673e83ac9 to main -8f6f15dcb HEAD@{381}: rebase (start): checkout main -6282f8684 HEAD@{382}: checkout: moving from main to functionaca-up -8f6f15dcb HEAD@{383}: checkout: moving from functionaca-up to main -6282f8684 HEAD@{384}: checkout: moving from main to functionaca-up -8f6f15dcb HEAD@{385}: pull upstream main: Fast-forward -fb7fc37b1 HEAD@{386}: checkout: moving from functionaca-up to main -6282f8684 HEAD@{387}: commit: updating help description -c2384d834 HEAD@{388}: rebase (finish): returning to refs/heads/functionaca-up -c2384d834 HEAD@{389}: rebase (pick): modifications with the tests -d1ab546e7 HEAD@{390}: rebase (pick): adding tests -3bd658532 HEAD@{391}: rebase (pick): fixing a mistake with help description -ff4e14057 HEAD@{392}: rebase (pick): adding tests -74fc63d2a HEAD@{393}: rebase (pick): adding support for kind argument to az containerapp up command -fb7fc37b1 HEAD@{394}: rebase (start): checkout main -f5dde75a8 HEAD@{395}: checkout: moving from main to functionaca-up -fb7fc37b1 HEAD@{396}: pull upstream main: Fast-forward -2ce3925cb HEAD@{397}: checkout: moving from functionaca-up to main -f5dde75a8 HEAD@{398}: commit: modifications with the tests -24b90053b HEAD@{399}: checkout: moving from main to functionaca-up -2ce3925cb HEAD@{400}: checkout: moving from functionaca-up to main -24b90053b HEAD@{401}: rebase (finish): returning to refs/heads/functionaca-up -24b90053b HEAD@{402}: rebase (pick): adding tests -ecf620df3 HEAD@{403}: rebase (pick): fixing a mistake with help description -dc2964891 HEAD@{404}: rebase (pick): adding tests -087ff0e9d HEAD@{405}: rebase (continue): adding support for kind argument to az containerapp up command -2ce3925cb HEAD@{406}: rebase (start): checkout main -9f4a23a99 HEAD@{407}: checkout: moving from main to functionaca-up -2ce3925cb HEAD@{408}: checkout: moving from main to main -2ce3925cb HEAD@{409}: rebase: checkout main -9f4a23a99 HEAD@{410}: checkout: moving from main to functionaca-up -2ce3925cb HEAD@{411}: pull upstream main: Fast-forward -6397bc331 (tag: quantum-1.0.0b8) HEAD@{412}: checkout: moving from functionaca-up to main -9f4a23a99 HEAD@{413}: checkout: moving from functionapp-help to functionaca-up -4d18b0eef (origin/functionapp-help) HEAD@{414}: commit: modifying help description for king argument in containerapp create -e35d94dc9 HEAD@{415}: checkout: moving from functionaca-up to functionapp-help -9f4a23a99 HEAD@{416}: commit: adding tests -783c8d6ea HEAD@{417}: commit: fixing a mistake with help description -05b006924 HEAD@{418}: rebase (finish): returning to refs/heads/functionaca-up -05b006924 HEAD@{419}: rebase (pick): adding tests -175dd7645 HEAD@{420}: rebase (pick): adding support for kind argument to az containerapp up command -6397bc331 (tag: quantum-1.0.0b8) HEAD@{421}: rebase (start): checkout main -a530473ec HEAD@{422}: checkout: moving from main to functionaca-up -6397bc331 (tag: quantum-1.0.0b8) HEAD@{423}: pull upstream main: Fast-forward -9da6c0529 HEAD@{424}: checkout: moving from functionaca-up to main -a530473ec HEAD@{425}: commit: adding tests -b1392943d HEAD@{426}: commit: adding support for kind argument to az containerapp up command -9da6c0529 HEAD@{427}: checkout: moving from main to functionaca-up -9da6c0529 HEAD@{428}: pull upstream main: Fast-forward -9b7f56e46 HEAD@{429}: checkout: moving from functionapp-help to main -e35d94dc9 HEAD@{430}: rebase (finish): returning to refs/heads/functionapp-help -e35d94dc9 HEAD@{431}: rebase (pick): undoing version change -eff14fa4f HEAD@{432}: rebase (pick): fixing help description for kind argument in az containerapp create command -9b7f56e46 HEAD@{433}: rebase (start): checkout main -e961ecac5 HEAD@{434}: commit: undoing version change -b43eb0e6e HEAD@{435}: checkout: moving from containerapp-jobupdate to functionapp-help -ce0e8bf01 (origin/containerapp-jobupdate) HEAD@{436}: checkout: moving from main to containerapp-jobupdate -9b7f56e46 HEAD@{437}: pull upstream main: Fast-forward -77e5c8bbb (tag: fleet-1.6.1) HEAD@{438}: checkout: moving from containerapp-jobupdate to main -ce0e8bf01 (origin/containerapp-jobupdate) HEAD@{439}: rebase (finish): returning to refs/heads/containerapp-jobupdate -ce0e8bf01 (origin/containerapp-jobupdate) HEAD@{440}: rebase (pick): undoing version change -2df192168 HEAD@{441}: rebase (pick): adding tests -c109c7f42 HEAD@{442}: rebase (pick): fixing issue: min/max executions not set in job update azcli -9b7f56e46 HEAD@{443}: rebase (start): checkout upstream/main -049396d36 HEAD@{444}: commit: undoing version change -4e84086ed HEAD@{445}: checkout: moving from functionapp-help to containerapp-jobupdate -b43eb0e6e HEAD@{446}: commit: fixing help description for kind argument in az containerapp create command -77e5c8bbb (tag: fleet-1.6.1) HEAD@{447}: checkout: moving from main to functionapp-help -77e5c8bbb (tag: fleet-1.6.1) HEAD@{448}: checkout: moving from functionapp-help to main -362b2af0f HEAD@{449}: commit: adding version information -00b2a3a07 HEAD@{450}: commit: updating help description for containerapp create kind argument -77e5c8bbb (tag: fleet-1.6.1) HEAD@{451}: checkout: moving from main to functionapp-help -77e5c8bbb (tag: fleet-1.6.1) HEAD@{452}: checkout: moving from containerapp-jobupdate to main -4e84086ed HEAD@{453}: commit: adding tests -e9b6eafa3 HEAD@{454}: checkout: moving from main to containerapp-jobupdate -77e5c8bbb (tag: fleet-1.6.1) HEAD@{455}: checkout: moving from containerapp-jobupdate to main -e9b6eafa3 HEAD@{456}: commit: fixing issue: min/max executions not set in job update azcli -77e5c8bbb (tag: fleet-1.6.1) HEAD@{457}: checkout: moving from main to containerapp-jobupdate -77e5c8bbb (tag: fleet-1.6.1) HEAD@{458}: clone: from https://github.com/khushishah513/azure-cli-extensions.git From 25e67db2484164c4785340ab53339ae2a6ac73a7 Mon Sep 17 00:00:00 2001 From: khushishah513 Date: Thu, 13 Nov 2025 09:53:45 +0000 Subject: [PATCH 15/15] addressing comment about history.rst --- src/containerapp/HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index 9f4c899ec40..371f19c43bc 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -12,6 +12,7 @@ upcoming * 'az containerapp function keys set': Create a new or update an existing function key in a container app * 'az containerapp function invocations summary': Get function invocation summary from Application Insights * 'az containerapp function invocations traces': Get function invocation traces from Application Insights +* 'az containerapp debug': Support `--command` to run a command inside the container and exit 1.2.0b5 ++++++ @@ -29,7 +30,6 @@ upcoming * 'az containerapp env premium-ingress': Deprecate `--min-replicas` and `--max-replicas` parameters, use workload profile scale instead. * 'az containerapp sessionpool create/update': Support `--probe-yaml` * 'az containerapp session stop': Support stop session for custom container sessions -* 'az containerapp debug': Support `--command` to run a command inside the container and exit 1.2.0b3 ++++++